Skip to content

Commit 2621ab1

Browse files
Disable tooltips for now
1 parent 37a2cde commit 2621ab1

4 files changed

Lines changed: 2 additions & 22 deletions

File tree

src/components/AppNavigation/ListItemCalendar.vue

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,6 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
8282
{{ t('tasks', 'Export') }}
8383
</ActionLink>
8484
<ActionButton v-if="!calendar.readOnly || calendar.isSharedWithMe"
85-
v-tooltip="{
86-
placement: 'left',
87-
boundariesElement: 'body',
88-
content: deleteMessage
89-
}"
9085
@click="scheduleDelete">
9186
<template v-if="!calendar.isSharedWithMe" #icon>
9287
<Delete :size="20" />
@@ -112,11 +107,6 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
112107
<div v-if="!deleteTimeout" :class="{error: nameError}" class="app-navigation-entry-edit">
113108
<form>
114109
<input v-model="newCalendarName"
115-
v-tooltip="{
116-
content: tooltipMessage,
117-
show: showTooltip('list_' + calendar.id),
118-
trigger: 'manual'
119-
}"
120110
class="edit"
121111
type="text"
122112
@keyup="checkName($event, calendar, save)">

src/components/DeleteCompletedModal.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
5050
<progress :max="initialCompletedTasksCount" :value="progress" class="delete-completed__progress" />
5151
<p class="delete-completed__tracker">
5252
<span>{{ percentage }} %</span>
53-
<span v-if="failed === 0">
53+
<!-- <span v-if="failed === 0">
5454
{{ t('tasks', 'No errors') }}
5555
</span>
5656
<span v-else v-tooltip.auto="t('tasks', 'Open your browser console for more details')">
5757
{{ n('tasks', 'Could not delete {failedCount} task.', 'Could not delete {failedCount} tasks.', failed, { failedCount: failed }) }}
58-
</span>
58+
</span> -->
5959
</p>
6060
</div>
6161
</div>

src/components/SortorderDropdown.vue

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,6 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
3535
</template>
3636
<ActionButton v-for="order in orders"
3737
:key="order.id"
38-
v-tooltip="{
39-
placement: 'left',
40-
content: order.hint,
41-
delay: { show: 500, hide: 0 }
42-
}"
4338
class="reactive"
4439
:class="{selected: sortOrder === order.id}"
4540
:close-after-click="true"

src/views/AppNavigation.vue

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,6 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
6868
<form>
6969
<input id="newListInput"
7070
v-model="newCalendarName"
71-
v-tooltip="{
72-
content: tooltipMessage,
73-
show: showTooltip('list_'),
74-
trigger: 'manual'
75-
}"
7671
:placeholder="t('tasks', 'New List')"
7772
class="edit"
7873
type="text"

0 commit comments

Comments
 (0)