Skip to content

Commit cbda520

Browse files
author
whitebrendan
committed
[BUG] [alpha] Journal calendar previous-month button has no tooltip
1 parent 781b6da commit cbda520

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/components/Journal.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,7 @@ export function JournalPanel() {
277277
<button
278278
class="p-1.5 rounded hover:bg-white/10 transition-colors"
279279
onClick={() => journal.navigateMonth(-1)}
280+
title="Previous month"
280281
>
281282
<Icon name="chevron-left" class="w-5 h-5" style={{ color: "var(--text-weak)" }} />
282283
</button>
@@ -290,6 +291,7 @@ export function JournalPanel() {
290291
<button
291292
class="p-1.5 rounded hover:bg-white/10 transition-colors"
292293
onClick={() => journal.navigateMonth(1)}
294+
title="Next month"
293295
>
294296
<Icon name="chevron-right" class="w-5 h-5" style={{ color: "var(--text-weak)" }} />
295297
</button>

0 commit comments

Comments
 (0)