Fixes bug not showing the chip label of external references on Dataset Description edit.

This commit is contained in:
gkolokythas 2019-07-29 11:20:42 +03:00
parent 39b0ca0140
commit 68b699ea63
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ export class DatasetExternalReferencesEditorComponent extends BaseComponent impl
this.dataRepositoriesAutoCompleteConfiguration = {
filterFn: this.searchDatasetExternalDataRepositories.bind(this),
initialItems: (type) => this.searchDatasetExternalDataRepositories('', type),
displayFn: (item) => item ? item.label : null,
displayFn: (item) => item ? item.name : null,
titleFn: (item) => item ? item.name : null,
subtitleFn: (item) => item ? item.tag : null
};