We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe52405 commit e16899cCopy full SHA for e16899c
packages/app-file-manager/src/components/BulkActions/ActionEdit/BatchEditorDialog/BatchEditorDialog.tsx
@@ -42,7 +42,11 @@ export const BatchEditorDialog = observer((props: BatchEditorDialogProps) => {
42
const ref = useRef<FormAPI | null>(null);
43
44
return (
45
- <DialogContainer open={props.vm.isOpen} onClose={props.onClose}>
+ <DialogContainer
46
+ open={props.vm.isOpen}
47
+ onClose={props.onClose}
48
+ preventOutsideDismiss={true}
49
+ >
50
{props.vm.isOpen ? (
51
<>
52
<DialogTitle>{"Edit items"}</DialogTitle>
0 commit comments