Skip to content

Commit

Permalink
Update packages/app-mobile/components/plugins/dialogs/PluginDialogMan…
Browse files Browse the repository at this point in the history
…ager.tsx

Co-authored-by: Henry Heino <[email protected]>
  • Loading branch information
laurent22 and personalizedrefrigerator authored Feb 13, 2025
1 parent 4948071 commit 0476eee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const PluginDialogManager: React.FC<Props> = props => {

const dialogs: ReactElement[] = [];
for (const viewInfo of viewInfos) {
if (viewInfo.view.containerType === ContainerType.Panel || viewInfo.view.containerType === ContainerType.Editor || !viewInfo.view.opened) {
if (viewInfo.view.containerType !== ContainerType.Dialog || !viewInfo.view.opened) {
continue;
}

Expand Down

0 comments on commit 0476eee

Please sign in to comment.