From c8059600d9bdf2244c63595f207c41bd6fd0bd54 Mon Sep 17 00:00:00 2001 From: guerler Date: Mon, 4 Nov 2024 13:26:51 +0300 Subject: [PATCH] Adjust warning messages --- src/components/ApiStatus.vue | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/components/ApiStatus.vue b/src/components/ApiStatus.vue index dc22ad6..788d91e 100644 --- a/src/components/ApiStatus.vue +++ b/src/components/ApiStatus.vue @@ -13,9 +13,7 @@ async function checkVersion() { const { data } = await GalaxyApi().GET("/api/version"); version.value = data.version_major; } catch (err) { - console.log( - `Unable to connect to Galaxy. Verify Galaxy is running and properly configured in 'server.config.js'.`, - ); + console.log(`Unable to connect to Galaxy. Verify Galaxy is running and refer to docs.`); version.value = ""; } } @@ -38,6 +36,6 @@ checkVersion(); - Galaxy is not accessible, review `server.config.js`. + Galaxy is not accessible!