Sometimes query size exceed localStorage limitations. For examply when debug attachment data type working in sense (large B64 fields).
In this cases sense doesn't show anything in result because it got exception on localStorage operation before rendering result.
I have fix it directly in optimized app.js:
localStorage.setItem(l,JSON.stringify({time:a,server:e,endpoint:t,method:i,data:r})) ->
try{localStorage.setItem(l,JSON.stringify({time:a,server:e,endpoint:t,method:i,data:r}))}catch(e){}
so now it work fine. But i think it's not much wise.