diff options
author | Dan Timoney <dtimoney@att.com> | 2019-04-25 15:19:40 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-04-25 15:19:40 +0000 |
commit | 6ab49d0f6bedcbc2ccd817df113265d32f421414 (patch) | |
tree | fa7963dbeb0281b1e21b6fe118c9ba5474e3895e /cds-ui/client/src | |
parent | af1db7274571e7b7fd349efd42423e7106f2d07d (diff) | |
parent | e78f8c2017607b4b2b28a04929c13980f9f279f9 (diff) |
Merge "Resource dictionary- removed uncessary code"
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; |