We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17b1bc0 commit 16b480dCopy full SHA for 16b480d
src/dashboard/Data/Browser/DataBrowser.react.js
@@ -255,14 +255,7 @@ export default class DataBrowser extends React.Component {
255
togglePanelVisibility() {
256
const newVisibility = !this.state.isPanelVisible;
257
this.setState({ isPanelVisible: newVisibility });
258
- try {
259
- window.localStorage?.setItem(
260
- AGGREGATION_PANEL_VISIBLE,
261
- newVisibility
262
- );
263
- } catch {
264
- // ignore
265
- }
+ window.localStorage?.setItem(AGGREGATION_PANEL_VISIBLE, newVisibility);
266
267
if (!newVisibility) {
268
this.props.setAggregationPanelData({});
0 commit comments