X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/4ad6191d53207a8b2d4c0c8a30b18119daaa5fbc..841d8e9643b622457474b74d075b36dcb67c871b:/services/workbench2/src/store/data-explorer/data-explorer-action.ts diff --git a/services/workbench2/src/store/data-explorer/data-explorer-action.ts b/services/workbench2/src/store/data-explorer/data-explorer-action.ts index ea050e609f..a330b97426 100644 --- a/services/workbench2/src/store/data-explorer/data-explorer-action.ts +++ b/services/workbench2/src/store/data-explorer/data-explorer-action.ts @@ -29,6 +29,7 @@ export const dataExplorerActions = unionize({ SET_EXPLORER_SEARCH_VALUE: ofType<{ id: string; searchValue: string }>(), RESET_EXPLORER_SEARCH_VALUE: ofType<{ id: string }>(), SET_REQUEST_STATE: ofType<{ id: string; requestState: DataTableRequestState }>(), + SET_IS_NOT_FOUND: ofType<{ id: string; isNotFound: boolean }>(), }); export type DataExplorerAction = UnionOf; @@ -51,4 +52,7 @@ export const bindDataExplorerActions = (id: string) => ({ SET_EXPLORER_SEARCH_VALUE: (payload: { searchValue: string }) => dataExplorerActions.SET_EXPLORER_SEARCH_VALUE({ ...payload, id }), RESET_EXPLORER_SEARCH_VALUE: () => dataExplorerActions.RESET_EXPLORER_SEARCH_VALUE({ id }), SET_REQUEST_STATE: (payload: { requestState: DataTableRequestState }) => dataExplorerActions.SET_REQUEST_STATE({ ...payload, id }), + SET_IS_NOT_FOUND: (payload: { isNotFound: boolean }) => dataExplorerActions.SET_IS_NOT_FOUND({ ...payload, id }), }); + +export type BoundDataExplorerActions = ReturnType;