summaryrefslogtreecommitdiff
path: root/elm
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2020-10-03 16:29:38 +0200
committerYorhel <git@yorhel.nl>2020-10-03 16:29:39 +0200
commit6c6f3b0f34307d98b3d67ae5b6bc17d4460fe0eb (patch)
tree60750e6e4606bbb95cc678add68c4c78c50fa169 /elm
parent42598ddb3d0dd629406ebd7186159e3fc130b19c (diff)
Tagmod: Remove title attribute of comment button
No need when it's repeated right next to the button, anyway. https://vndb.org/t2520.497
Diffstat (limited to 'elm')
-rw-r--r--elm/Tagmod.elm1
1 files changed, 0 insertions, 1 deletions
diff --git a/elm/Tagmod.elm b/elm/Tagmod.elm
index 1e0cb408..82b6fd13 100644
--- a/elm/Tagmod.elm
+++ b/elm/Tagmod.elm
@@ -168,7 +168,6 @@ viewTag t sel vid mod =
[ onMouseOver (SetSel t.id Note)
, onMouseOut (SetSel 0 NoSel)
, onClickD (SetSel t.id NoteSet)
- , title <| if t.notes == "" then "set note" else t.notes
, style "opacity" <| if t.notes == "" then "0.5" else "1.0"
] [ text "💬" ]
]