Fixes bug not showing the chip label of external references on Dataset Description edit.
This commit is contained in:
parent
39b0ca0140
commit
68b699ea63
|
@ -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
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue