From 88c6a9ae9d8a83a96f67bf1492bb7a9e3bf1ca92 Mon Sep 17 00:00:00 2001 From: Reilly Wood Date: Sun, 22 Sep 2024 13:40:19 -0700 Subject: [PATCH] feat: Add hover underline to bookmark emojis --- reitunes-rs/templates/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reitunes-rs/templates/index.html b/reitunes-rs/templates/index.html index 009c78a..691fd82 100644 --- a/reitunes-rs/templates/index.html +++ b/reitunes-rs/templates/index.html @@ -166,7 +166,7 @@ let minutes = Math.floor(bookmark.position / 60); let seconds = Math.floor(bookmark.position % 60); let timeString = `${minutes}:${seconds.toString().padStart(2, '0')}`; - return ` + return ` ${bookmark.emoji || '🔖'} `; }).join('');