X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/fbec771115f1872bdadc0572a5c5059be68f1aca..6fbcbe191d8356ad2029e79ad961c983b2284afd:/src/views-components/create-collection-dialog/create-collection-dialog.tsx diff --git a/src/views-components/create-collection-dialog/create-collection-dialog.tsx b/src/views-components/create-collection-dialog/create-collection-dialog.tsx index e4474a56..0ba2b22a 100644 --- a/src/views-components/create-collection-dialog/create-collection-dialog.tsx +++ b/src/views-components/create-collection-dialog/create-collection-dialog.tsx @@ -14,7 +14,7 @@ import { PROJECT_PANEL_ID } from "../../views/project-panel/project-panel"; import { snackbarActions } from "../../store/snackbar/snackbar-actions"; const mapStateToProps = (state: RootState) => ({ - open: state.collectionCreation.creator.opened + open: state.collections.creator.opened }); const mapDispatchToProps = (dispatch: Dispatch) => ({ @@ -33,7 +33,7 @@ const addCollection = (data: { name: string, description: string }) => (dispatch: Dispatch) => { return dispatch(createCollection(data)).then(() => { dispatch(snackbarActions.OPEN_SNACKBAR({ - message: "Created a new collection", + message: "Collection has been successfully created.", hideDuration: 2000 })); dispatch(dataExplorerActions.REQUEST_ITEMS({ id: PROJECT_PANEL_ID }));