diff --git a/client/src/components/Masthead/QuotaMeter.vue b/client/src/components/Masthead/QuotaMeter.vue
index c2ddf28525c1..d844e8d3ce84 100644
--- a/client/src/components/Masthead/QuotaMeter.vue
+++ b/client/src/components/Masthead/QuotaMeter.vue
@@ -7,7 +7,9 @@
:disabled="isAnonymous"
class="ml-auto"
:title="title"
- data-description="storage dashboard link">
+ data-description="storage dashboard link"
+ @mouseover="callHelpMode"
+ @focus="callHelpMode">
{{ usingString + " " + totalUsageString }}
@@ -18,7 +20,9 @@
:disabled="isAnonymous"
to="/storage"
:title="title"
- data-description="storage dashboard link">
+ data-description="storage dashboard link"
+ @mouseover="callHelpMode"
+ @focus="callHelpMode">
@@ -29,22 +33,26 @@
diff --git a/client/src/stores/helpmode/helpModeTextStore.js b/client/src/stores/helpmode/helpModeTextStore.js
index dab6088d2d96..332fa9421e2e 100644
--- a/client/src/stores/helpmode/helpModeTextStore.js
+++ b/client/src/stores/helpmode/helpModeTextStore.js
@@ -1,24 +1,14 @@
import { defineStore } from "pinia";
-export const useHelpModeTextStore = defineStore("helpModeTextStore", {
+export const useHelpModeTextStore = defineStore("helpModeText", {
state: () => {
return {
- helpmodetext: "",
+ helpmodetext: "Welcome to Galaxy Help Mode!",
};
},
actions: {
addHelpModeText(text) {
- //only push up to 20 items, then start removing the oldest items
- //do we need to keep track of more than one item? or is this an enhancement?
- // if (!this.helpmodetext.includes(text)) {
- // if (this.helpmodetext.length < 20) {
- // this.helpmodetext.push(text);
- // } else {
- // this.helpmodetext.shift();
- // this.helpmodetext.push(text);
- // }
- // }
this.helpmodetext = text;
},
},