From e78f8c2017607b4b2b28a04929c13980f9f279f9 Mon Sep 17 00:00:00 2001 From: Arundathi Patil Date: Thu, 25 Apr 2019 20:06:29 +0530 Subject: Resource dictionary- removed uncessary code Removed hardcoded values Issue-ID: CCSDK-1217 Change-Id: I356d8876a183b2d4df2e23bdd6781de4f47bf8bf Signed-off-by: Arundathi Patil --- .../existing-model/search-resource/search-resource.component.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/existing-model/search-resource/search-resource.component.ts b/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/existing-model/search-resource/search-resource.component.ts index 5aac51bed..b81a7335e 100644 --- a/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/existing-model/search-resource/search-resource.component.ts +++ b/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/existing-model/search-resource/search-resource.component.ts @@ -32,7 +32,8 @@ export class SearchResourceComponent implements OnInit { myControl: FormGroup; @Output() resourcesData = new EventEmitter(); - options: any[] = ['One','One1', 'Two', 'Three']; + options: any[] = []; + //['One','One1', 'Two', 'Three']; // @ViewChild('resourceSelect') resourceSelect; @ViewChild('resourceSelect', { read: MatAutocompleteTrigger }) resourceSelect: MatAutocompleteTrigger; -- cgit 1.2.3-korg