diff --git a/apps/dashboard/js/dashboard.js b/apps/dashboard/js/dashboard.js index 9298fa43ca3da53a99d7c9a0e65b55e5370f91e0..c45130de2f5967555e218680916510c83097f4c6 100644 Binary files a/apps/dashboard/js/dashboard.js and b/apps/dashboard/js/dashboard.js differ diff --git a/apps/dashboard/js/dashboard.js.map b/apps/dashboard/js/dashboard.js.map index 942fbb721ba32e5b59d095b917a633a9aff89df4..9801a12c293f3c26b23e1527fb9897d8c45d4c3f 100644 Binary files a/apps/dashboard/js/dashboard.js.map and b/apps/dashboard/js/dashboard.js.map differ diff --git a/apps/dashboard/src/App.vue b/apps/dashboard/src/App.vue index aea3dabc57779d421ebeae4abe5f5f89c78d0188..eb20a15bda9881c0f3332241ddadc5434b1052f8 100644 --- a/apps/dashboard/src/App.vue +++ b/apps/dashboard/src/App.vue @@ -25,10 +25,8 @@ </div> </Draggable> - <div class="footer" - :class="{ firstrun: firstRun }"> - <a v-tooltip="tooltip" - class="edit-panels icon-rename" + <div class="footer"> + <a class="edit-panels icon-rename" tabindex="0" @click="showModal" @keyup.enter="showModal" @@ -158,17 +156,6 @@ export default { backgroundImage: `url(${this.backgroundImage})`, } }, - tooltip() { - if (!this.firstRun) { - return null - } - return { - content: t('dashboard', 'Adjust the dashboard to your needs'), - placement: 'top', - show: true, - trigger: 'manual', - } - }, greeting() { const time = this.timer.getHours() const shouldShowName = this.displayName && this.uid !== this.displayName @@ -489,11 +476,6 @@ export default { transition: bottom var(--animation-slow) ease-in-out; bottom: 0; padding: 44px 0; - - &.firstrun { - position: sticky; - bottom: 10px; - } } .edit-panels {