fix: panel_resizer mobx action warnings (#820)

This commit is contained in:
Aman Harwara
2022-01-21 20:30:57 +05:30
committed by GitHub
parent 62cb70728e
commit 701b703466

View File

@@ -90,14 +90,18 @@ export class PanelResizerState {
pressed: observable,
collapsed: observable,
onMouseUp: action,
onMouseDown: action,
onDblClick: action,
handleWidthEvent: action,
addInvisibleOverlay: action,
finishSettingWidth: action,
handleLeftEvent: action,
setWidth: action,
setMinWidth: action,
handleWidthEvent: action,
onDblClick: action,
onMouseDown: action,
onMouseUp: action,
reloadDefaultValues: action,
removeInvisibleOverlay: action,
setLeft: action,
setMinWidth: action,
setWidth: action,
appFrame: computed,
});