Skip to content

Commit 24d1d93

Browse files
authored
Merge pull request #22573 from nextcloud/bugfix/noid/tooltip-dashboard-firstrun
Remove tooltip on customize button in dashboard
2 parents d9b3c75 + b759b40 commit 24d1d93

3 files changed

Lines changed: 4 additions & 22 deletions

File tree

apps/dashboard/js/dashboard.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/dashboard/js/dashboard.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/dashboard/src/App.vue

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,8 @@
2525
</div>
2626
</Draggable>
2727

28-
<div class="footer"
29-
:class="{ firstrun: firstRun }">
30-
<a v-tooltip="tooltip"
31-
class="edit-panels icon-rename"
28+
<div class="footer">
29+
<a class="edit-panels icon-rename"
3230
tabindex="0"
3331
@click="showModal"
3432
@keyup.enter="showModal"
@@ -158,17 +156,6 @@ export default {
158156
backgroundImage: `url(${this.backgroundImage})`,
159157
}
160158
},
161-
tooltip() {
162-
if (!this.firstRun) {
163-
return null
164-
}
165-
return {
166-
content: t('dashboard', 'Adjust the dashboard to your needs'),
167-
placement: 'top',
168-
show: true,
169-
trigger: 'manual',
170-
}
171-
},
172159
greeting() {
173160
const time = this.timer.getHours()
174161
const shouldShowName = this.displayName && this.uid !== this.displayName
@@ -489,11 +476,6 @@ export default {
489476
transition: bottom var(--animation-slow) ease-in-out;
490477
bottom: 0;
491478
padding: 44px 0;
492-
493-
&.firstrun {
494-
position: sticky;
495-
bottom: 10px;
496-
}
497479
}
498480
499481
.edit-panels {

0 commit comments

Comments
 (0)