[Fix] Fixed broken search on navigation

This commit is contained in:
Robert von Burg 2018-03-16 14:17:24 +01:00
parent 223f4e6b22
commit 1c1df558f7
1 changed files with 5 additions and 3 deletions

View File

@ -259,7 +259,7 @@
type: String,
value: './'
},
dlgTitle : {
dlgTitle: {
type: String
},
realm: {
@ -348,9 +348,12 @@
},
observeSearchTerm: function (newValue, oldValue) {
if (this.realm == null || this.objectType == null || this.selectedType == null) return;
if (this.realm == null || this.objectType == null || this.selectedType == null) {
return;
}
this.debounce("doSearch", function () {
this.offset = 0;
this.reloadTypeDetails();
}, 500);
},
@ -560,7 +563,6 @@
},
reloadTypeDetails: function () {
this.dlgTitle = 'Reload failed';
this._handleAjaxResponse = function (data) {
this.set('objects', data.detail.response);