diff --git a/src/renderers/Dialog.tsx b/src/renderers/Dialog.tsx index db9111abc..3c7eee052 100644 --- a/src/renderers/Dialog.tsx +++ b/src/renderers/Dialog.tsx @@ -629,10 +629,6 @@ export class DialogRenderer extends Dialog { tryChildrenToHandle(action: Action, ctx: object, rawAction?: Action) { const scoped = this.context as IScopedContext; - if (action.fromDialog) { - return false; - } - const targets: Array = []; const {onConfirm, store} = this.props; diff --git a/src/renderers/Drawer.tsx b/src/renderers/Drawer.tsx index fdb2fc0bd..0981ec64f 100644 --- a/src/renderers/Drawer.tsx +++ b/src/renderers/Drawer.tsx @@ -687,10 +687,6 @@ export class DrawerRenderer extends Drawer { tryChildrenToHandle(action: Action, ctx: object, rawAction?: Action) { const scoped = this.context as IScopedContext; - if (action.fromDialog) { - return false; - } - const targets: Array = []; const {onConfirm, store} = this.props;