diff --git a/static/js/pandora/home.js b/static/js/pandora/home.js index 32bec4f3..3cbebf5c 100644 --- a/static/js/pandora/home.js +++ b/static/js/pandora/home.js @@ -110,11 +110,14 @@ pandora.ui.home = function() { pandora.$ui.findSelect.value('*'); pandora.$ui.findInput.value(value); that.fadeOutScreen(); - pandora.UI.set('find', { - conditions: value === '' - ? [] - : [{key: '*', value: value, operator: '='}], - operator: '&' + pandora.UI.set({ + page: '', + find: { + conditions: value === '' + ? [] + : [{key: '*', value: value, operator: '='}], + operator: '&' + } }); } })