Skip to content

Commit

Permalink
fix: improve conditionalwrapper selection
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenfiszel committed Dec 5, 2023
1 parent 0333ce7 commit b5f5355
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion frontend/src/lib/components/apps/editor/AppEditor.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,11 @@
parentComponentId: befSelected,
subGridIndex: 0
}
} else if (item?.data.type === 'tabscomponent' || item?.data.type === 'steppercomponent') {
} else if (
item?.data.type === 'tabscomponent' ||
item?.data.type === 'steppercomponent' ||
item?.data.type === 'conditionalwrapper'
) {
$focusedGrid = {
parentComponentId: befSelected,
subGridIndex:
Expand Down

0 comments on commit b5f5355

Please sign in to comment.