1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { Dispatch } from "redux";
6 import { dialogActions } from 'store/dialog/dialog-actions';
8 export const NOT_FOUND_DIALOG_NAME = 'notFoundDialog';
10 export const openNotFoundDialog = () =>
11 (dispatch: Dispatch) => {
12 dispatch(dialogActions.OPEN_DIALOG({
13 id: NOT_FOUND_DIALOG_NAME,