"No filters" in InfoLog was not removing a search

This commit is contained in:
Ralf Becker 2014-10-21 12:17:00 +00:00
parent c1c4b7c682
commit b6f69d3a4c

View File

@ -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);
},