X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/b595915f605850d59c39da9b2c75555cd3965a3b..3641a3638123f272b97cf313a1a1a4d890741383:/src/index.tsx diff --git a/src/index.tsx b/src/index.tsx index 5285284735..d0154b663e 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -38,6 +38,7 @@ import { addRouteChangeHandlers } from './routes/route-change-handlers'; import { setCurrentTokenDialogApiHost } from '~/store/current-token-dialog/current-token-dialog-actions'; import { processResourceActionSet } from '~/views-components/context-menu/action-sets/process-resource-action-set'; import { progressIndicatorActions } from '~/store/progress-indicator/progress-indicator-actions'; +import { setUuidPrefix } from '~/store/workflow-panel/workflow-panel-actions'; import { trashedCollectionActionSet } from '~/views-components/context-menu/action-sets/trashed-collection-action-set'; const getBuildNumber = () => "BN-" + (process.env.REACT_APP_BUILD_NUMBER || "dev"); @@ -78,6 +79,7 @@ fetchConfig() store.subscribe(initListener(history, store, services, config)); store.dispatch(initAuth()); store.dispatch(setCurrentTokenDialogApiHost(apiHost)); + store.dispatch(setUuidPrefix(config.uuidPrefix)); const TokenComponent = (props: any) => ; const MainPanelComponent = (props: any) => ;