fix: theme property pane reset on hover over the widget (#13716)

This commit is contained in:
Keyur Paralkar 2022-05-13 16:10:09 +05:30 committed by GitHub
parent dabca5aac5
commit a5f426d02b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -126,7 +126,10 @@ const themeReducer = createImmerReducer(initialState, {
[ReduxActionTypes.CLOSE_BETA_CARD_SHOWN]: (state: AppThemingState) => {
state.isBetaCardShown = true;
},
[ReduxActionTypes.FOCUS_WIDGET]: (state: AppThemingState) => {
[ReduxActionTypes.SELECT_WIDGET_INIT]: (state: AppThemingState) => {
state.stack = [];
},
[ReduxActionTypes.START_CANVAS_SELECTION]: (state: AppThemingState) => {
state.stack = [];
},
});