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, pressed: observable,
collapsed: observable, collapsed: observable,
onMouseUp: action, addInvisibleOverlay: action,
onMouseDown: action, finishSettingWidth: action,
onDblClick: action,
handleWidthEvent: action,
handleLeftEvent: action, handleLeftEvent: action,
setWidth: action, handleWidthEvent: action,
setMinWidth: action, onDblClick: action,
onMouseDown: action,
onMouseUp: action,
reloadDefaultValues: action, reloadDefaultValues: action,
removeInvisibleOverlay: action,
setLeft: action,
setMinWidth: action,
setWidth: action,
appFrame: computed, appFrame: computed,
}); });