X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/f63f3a5360ae6381d4b332bf86ef52b4e22107fb..4b961d16b8f8ef8afbd13697a79fe4684acd0416:/src/store/dialog/dialog-actions.ts diff --git a/src/store/dialog/dialog-actions.ts b/src/store/dialog/dialog-actions.ts index 22629b69..ce01a50d 100644 --- a/src/store/dialog/dialog-actions.ts +++ b/src/store/dialog/dialog-actions.ts @@ -6,7 +6,8 @@ import { unionize, ofType, UnionOf } from "~/common/unionize"; export const dialogActions = unionize({ OPEN_DIALOG: ofType<{ id: string, data: any }>(), - CLOSE_DIALOG: ofType<{ id: string }>() + CLOSE_DIALOG: ofType<{ id: string }>(), + CLOSE_ALL_DIALOGS: ofType<{}>() }); export type DialogAction = UnionOf;