diff options
author | Arundathi Patil <arundpil@in.ibm.com> | 2019-04-25 20:06:29 +0530 |
---|---|---|
committer | Arundathi Patil <arundpil@in.ibm.com> | 2019-04-25 20:06:49 +0530 |
commit | e78f8c2017607b4b2b28a04929c13980f9f279f9 (patch) | |
tree | e80c9d6b0be2aba66fccb12a9bd971d2827c0ba3 /cds-ui/client/src | |
parent | 79895ed99627931ab6c934dab074e36c3e9e06a4 (diff) |
Resource dictionary- removed uncessary code
Removed hardcoded values
Issue-ID: CCSDK-1217
Change-Id: I356d8876a183b2d4df2e23bdd6781de4f47bf8bf
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
Diffstat (limited to 'cds-ui/client/src')
-rw-r--r-- | cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/existing-model/search-resource/search-resource.component.ts | 3 |
1 files changed, 2 insertions, 1 deletions
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; |