Passes search term to taxonomy taginput filter. Closes #204

This commit is contained in:
Mateus Machado Luna 2019-02-21 15:38:24 -03:00
parent 080bf77acb
commit 424895ff1c
1 changed files with 4 additions and 1 deletions

View File

@ -115,7 +115,10 @@
this.isLoading = true;
this.options = [];
let query_items = { 'current_query': this.query };
let query_items = {
'current_query': this.query,
'search': query
};
let endpoint = this.isRepositoryLevel ? '/facets/' + this.metadatum : '/collection/'+ this.collection +'/facets/' + this.metadatum;