Skip to content

Commit

Permalink
Fix tooltips in masthead
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed May 21, 2024
1 parent 9cbff3f commit 9cc347a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions client/src/components/Masthead/Masthead.vue
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,13 @@ onMounted(() => {
</span>
</BNavbarNav>
<BNavbarNav v-if="isConfigLoaded" class="mr-1">
<MastheadItem id="analysis" title="Tools and Current History" icon="fa-home" @click="openUrl('/')" />
<MastheadItem id="analysis" tooltip="Tools, Workflows and Histories" icon="fa-home" @click="openUrl('/')" />
<MastheadItem
v-if="windowTab"
:id="windowTab.id"
:title="windowTab.title"
:icon="windowTab.icon"
:toggle="windowToggle"
:tooltip="windowTab.tooltip"
@click="onWindowToggle" />
<MastheadItem
v-for="(tab, idx) in extensionTabs"
Expand All @@ -121,14 +121,14 @@ onMounted(() => {
@click="tab.onclick" />
<MastheadItem
id="help"
title="Support, contact, and community"
icon="fa-question"
tooltip="Support, Contact, and Community"
@click="openUrl('/about')" />
<QuotaMeter />
<MastheadItem
v-if="isAnonymous && config.allow_user_creation"
id="user"
title="Log in or Register"
title="Login or Register"
@click="openUrl('/login/start')" />
<MastheadItem
v-if="isAnonymous && !config.allow_user_creation"
Expand All @@ -138,8 +138,8 @@ onMounted(() => {
<MastheadItem
v-if="!isAnonymous && !config.single_user"
id="user"
title="Logout"
icon="fa-sign-out-alt"
tooltip="Logout"
@click="userLogout" />
</BNavbarNav>
</BNavbar>
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/Masthead/QuotaMeter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div>
<div v-if="!hasQuota" class="quota-text d-flex align-items-center">
<b-link
v-b-tooltip.hover.left
v-b-tooltip.hover.bottom
to="/storage"
:disabled="isAnonymous"
class="ml-auto"
Expand Down

0 comments on commit 9cc347a

Please sign in to comment.