Suggest to avoid localStorage limitations

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.

Is this a Marvel issue?

After moving sense to kibana it doesn't make sence in Marvel. It was an issue in optimized JS code shipped with Marvel so i think it's marvel's sense issue