aboutsummaryrefslogtreecommitdiff
path: root/resources/vue/components
diff options
context:
space:
mode:
authorRon Lucke <lucke@elan-ev.de>2026-03-10 16:42:31 +0100
committerRon Lucke <lucke@elan-ev.de>2026-03-10 16:42:31 +0100
commit4a349b87cd29349fde78587c9f6c28ef289fd58f (patch)
treee8a4afad4f52c47e821d7786ab5715dc2bda75c6 /resources/vue/components
parent98ca2c4209e5a83d304b2cf9f447b4a923f53de8 (diff)
add title to buttonsbiest-6180
Diffstat (limited to 'resources/vue/components')
-rw-r--r--resources/vue/components/forum/discussions/DiscussionTimeline.vue10
1 files changed, 7 insertions, 3 deletions
diff --git a/resources/vue/components/forum/discussions/DiscussionTimeline.vue b/resources/vue/components/forum/discussions/DiscussionTimeline.vue
index 36b0961..2cdc9c2 100644
--- a/resources/vue/components/forum/discussions/DiscussionTimeline.vue
+++ b/resources/vue/components/forum/discussions/DiscussionTimeline.vue
@@ -95,7 +95,7 @@ onUnmounted(() => {
<template>
<div class="discussion-timeline">
- <button class="timeline-anchor" @click="jumpToPost(0)">
+ <button class="timeline-anchor" :title="$gettext('Zum ersten Beitrag')" @click="jumpToPost(0)">
<StudipDateTime :iso="discussion.mkdate" :relative="true" />
</button>
@@ -150,13 +150,17 @@ onUnmounted(() => {
class="new-posts-label"
:style="{ top: unreadPosition + '%' }"
>
- <button type="button" @click="jumpToPost(firstUnreadPostIndex)">
+ <button
+ type="button"
+ :title="$gettext('Zum ersten ungelesenen Beitrag')"
+ @click="jumpToPost(firstUnreadPostIndex)"
+ >
{{ $gettext('Neu ab hier') }}
</button>
</div>
</div>
- <button class="timeline-anchor" @click="jumpToPost(posts.length - 1)">
+ <button class="timeline-anchor" :title="$gettext('Zum letzten Beitrag')" @click="jumpToPost(posts.length - 1)">
<StudipDateTime :iso="posts[posts.length - 1]?.mkdate || discussion.mkdate" :relative="true" />
</button>
</div>