mirror of https://gitee.com/bigwinds/arangodb
fixed issue #991 - database search view broken
This commit is contained in:
parent
a598c421ba
commit
aedebfda20
|
@ -58,6 +58,7 @@
|
||||||
searchString : '',
|
searchString : '',
|
||||||
currentDB : this.currentDB
|
currentDB : this.currentDB
|
||||||
}));
|
}));
|
||||||
|
|
||||||
this.replaceSVGs();
|
this.replaceSVGs();
|
||||||
return this;
|
return this;
|
||||||
},
|
},
|
||||||
|
@ -205,8 +206,10 @@
|
||||||
);
|
);
|
||||||
$(this.el).html(this.template.render({
|
$(this.el).html(this.template.render({
|
||||||
collection : reducedCollection,
|
collection : reducedCollection,
|
||||||
searchString : searchString
|
searchString : searchString,
|
||||||
|
currentDB : this.currentDB
|
||||||
}));
|
}));
|
||||||
|
this.replaceSVGs();
|
||||||
|
|
||||||
//after rendering, get the "new" element
|
//after rendering, get the "new" element
|
||||||
searchInput = $('#databaseSearchInput');
|
searchInput = $('#databaseSearchInput');
|
||||||
|
|
Loading…
Reference in New Issue