"No filters" in InfoLog was not removing a search

This commit is contained in:
Ralf Becker 2014-10-21 12:17:20 +00:00
parent e545a9fdf0
commit f81c2340bd

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