Skip to content

Commit

Permalink
Set Component to null when slider menu
Browse files Browse the repository at this point in the history
  • Loading branch information
qaiswardag committed Sep 2, 2024
1 parent 441cf8f commit fc15340
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,14 @@ const deleteAllComponents = function () {
// handle slideover window
const handleSettingsSlideOver = function () {
pageBuilderStateStore.setComponents(null);
pageBuilderStateStore.setComponent(null);
titleSettingsSlideOverRight.value = 'Settings';
showSettingsSlideOverRight.value = true;
};
// handle slideover window
const settingsSlideOverButton = function () {
pageBuilderStateStore.setComponents(null);
pageBuilderStateStore.setComponent(null);
showSettingsSlideOverRight.value = false;
};
Expand Down

0 comments on commit fc15340

Please sign in to comment.