From aedebfda20d8b4bede4a9cbe02a30d59a701cc6f Mon Sep 17 00:00:00 2001 From: Heiko Kernbach Date: Thu, 21 Aug 2014 11:15:00 +0200 Subject: [PATCH] fixed issue #991 - database search view broken --- js/apps/system/aardvark/frontend/js/views/databaseView.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/js/apps/system/aardvark/frontend/js/views/databaseView.js b/js/apps/system/aardvark/frontend/js/views/databaseView.js index 9c428c0880..0626bda63f 100644 --- a/js/apps/system/aardvark/frontend/js/views/databaseView.js +++ b/js/apps/system/aardvark/frontend/js/views/databaseView.js @@ -58,6 +58,7 @@ searchString : '', currentDB : this.currentDB })); + this.replaceSVGs(); return this; }, @@ -205,8 +206,10 @@ ); $(this.el).html(this.template.render({ collection : reducedCollection, - searchString : searchString + searchString : searchString, + currentDB : this.currentDB })); + this.replaceSVGs(); //after rendering, get the "new" element searchInput = $('#databaseSearchInput');