Merge branch 'main' into 21386-project-loading-view
authorLisa Knox <lisaknox83@gmail.com>
Wed, 21 Feb 2024 17:06:20 +0000 (12:06 -0500)
committerLisa Knox <lisaknox83@gmail.com>
Wed, 21 Feb 2024 17:06:20 +0000 (12:06 -0500)
Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

1  2 
services/workbench2/src/store/data-explorer/data-explorer-action.ts

index c25e0cf698f638c7e167da5569b4be5b559195a2,98df6f0c4a509f6d8eaeb1a9ceb2063774ee1a85..a330b97426e332dd1663942dd22cc89b0046cf12
@@@ -52,5 -51,6 +52,7 @@@ export const bindDataExplorerActions = 
      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<typeof bindDataExplorerActions>;