Skip to content

Commit

Permalink
fix: panel_resizer mobx action warnings (#820)
Browse files Browse the repository at this point in the history
  • Loading branch information
amanharwara committed Jan 21, 2022
1 parent 62cb707 commit 701b703
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions app/assets/javascripts/ui_models/panel_resizer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
});
Expand Down

0 comments on commit 701b703

Please sign in to comment.