From f96610d3846dac93bfdfdb3ba329c40f66435281 Mon Sep 17 00:00:00 2001 From: Michal Klobukowski Date: Wed, 12 Dec 2018 18:02:11 +0100 Subject: [PATCH] Dispatch loadFileViewersConfig from workbench Feature #13540 Arvados-DCO-1.1-Signed-off-by: Michal Klobukowski --- src/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index e73f08c4..55d0b482 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -57,6 +57,7 @@ import { userActionSet } from '~/views-components/context-menu/action-sets/user- import { computeNodeActionSet } from '~/views-components/context-menu/action-sets/compute-node-action-set'; import { apiClientAuthorizationActionSet } from '~/views-components/context-menu/action-sets/api-client-authorization-action-set'; import { linkActionSet } from '~/views-components/context-menu/action-sets/link-action-set'; +import { loadFileViewersConfig } from '~/store/file-viewers/file-viewers-actions'; console.log(`Starting arvados [${getBuildInfo()}]`); @@ -102,6 +103,7 @@ fetchConfig() store.dispatch(setCurrentTokenDialogApiHost(apiHost)); store.dispatch(setUuidPrefix(config.uuidPrefix)); store.dispatch(loadVocabulary); + store.dispatch(loadFileViewersConfig); const TokenComponent = (props: any) => ; const MainPanelComponent = (props: any) => ; -- 2.30.2