From 6c198544dc282115b6701ffd78ffde7e50a419be Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Sat, 5 Aug 2023 10:55:46 +0200 Subject: [PATCH] Rename composable isLoaded to isConfigLoaded --- client/src/components/AboutGalaxy.vue | 4 ++-- .../src/components/ActivityBar/ActivityBar.test.js | 2 +- .../Collections/common/CollectionEditView.vue | 2 +- .../DatasetInformation/DatasetDetails.vue | 2 +- .../HistoryOperations/SelectionOperations.vue | 2 +- .../components/NewUserWelcome/NewUserWelcome.vue | 2 +- client/src/components/PageDisplay/PageDisplay.vue | 2 +- .../components/Panels/Common/ToolSection.test.js | 2 +- .../src/components/Panels/Common/ToolSection.vue | 6 +++--- .../src/components/Panels/ProviderAwareToolBox.vue | 2 +- .../Panels/ProviderAwareToolBoxWorkflow.vue | 2 +- client/src/components/Panels/ToolBox.test.js | 2 +- client/src/components/Sharing/Sharing.vue | 2 +- client/src/components/StsDownloadButton.vue | 2 +- client/src/components/Tool/ToolCard.test.js | 2 +- client/src/components/Tool/ToolForm.vue | 2 +- .../Toolshed/RepositoryDetails/Index.vue | 2 +- client/src/components/Upload/UploadModal.test.js | 2 +- client/src/components/Upload/UploadModal.vue | 4 ++-- .../components/User/DiskUsage/DiskUsageSummary.vue | 2 +- client/src/components/User/ThemeSelector.vue | 4 ++-- client/src/components/User/UserPreferences.vue | 2 +- .../Workflow/Editor/Forms/FormTool.test.js | 2 +- .../src/components/Workflow/InvocationReport.vue | 2 +- .../Workflow/Run/WorkflowRunFormSimple.vue | 2 +- .../WorkflowInvocationState.test.js | 2 +- client/src/composables/config.ts | 6 +++--- client/src/composables/toolTrainingMaterial.ts | 14 ++++---------- client/src/entry/analysis/modules/Admin.vue | 4 ++-- 29 files changed, 40 insertions(+), 46 deletions(-) diff --git a/client/src/components/AboutGalaxy.vue b/client/src/components/AboutGalaxy.vue index 5f065b718d65..4c40f4978d06 100644 --- a/client/src/components/AboutGalaxy.vue +++ b/client/src/components/AboutGalaxy.vue @@ -12,7 +12,7 @@ import ExternalLink from "@/components/ExternalLink.vue"; import License from "@/components/License/License.vue"; import UtcDate from "@/components/UtcDate.vue"; -const { config, isLoaded } = useConfig(); +const { config, isConfigLoaded } = useConfig(); const clientBuildDate = __buildTimestamp__ || new Date().toISOString(); const apiDocsLink = `${getAppRoot()}api/docs`; @@ -27,7 +27,7 @@ const versionUserDocumentationUrl = computed(() => {