Skip to content

Commit

Permalink
Adjust warning messages
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Nov 4, 2024
1 parent e9fa0ee commit c805960
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/components/ApiStatus.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "";
}
}
Expand All @@ -38,6 +36,6 @@ checkVersion();
<ExclamationCircleIcon class="text-red-600" />
</n-icon>
</template>
<span class="text-xs">Galaxy is not accessible, review `server.config.js`.</span>
<span class="text-xs">Galaxy is not accessible!</span>
</n-tooltip>
</template>

0 comments on commit c805960

Please sign in to comment.