From f81c2340bd28446ecdd95f059688c116755131d1 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 21 Oct 2014 12:17:20 +0000 Subject: [PATCH] "No filters" in InfoLog was not removing a search --- infolog/js/app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/infolog/js/app.js b/infolog/js/app.js index 5b79d2fcce..d544b337a3 100644 --- a/infolog/js/app.js +++ b/infolog/js/app.js @@ -151,6 +151,7 @@ app.classes.infolog = AppJS.extend( setState: function(state) { if (typeof state.state.action == 'undefined') state.state.action = null; + if (typeof state.state.search == 'undefined') state.state.search = null; return this._super.apply(this, arguments); },