summaryrefslogtreecommitdiff
path: root/elm/User/Edit.elm
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2020-04-26 14:12:57 +0200
committerYorhel <git@yorhel.nl>2020-04-26 14:13:09 +0200
commitba552a7efe903181eb7fcb2f64854c64aadb7b25 (patch)
treee4425c0aa3b41a8c6c1acd251dad8d4e34b0d106 /elm/User/Edit.elm
parent6fa82cabce6ce9a631310924e040406656a9cac7 (diff)
Ignore existing tag votes by users without perm_tag
Same idea as 00fbcdf96432efad85abdbc7392d493409a4c253. Not sure why it hadn't occurred to me before, seems like such an obvious thing to do.
Diffstat (limited to 'elm/User/Edit.elm')
-rw-r--r--elm/User/Edit.elm2
1 files changed, 1 insertions, 1 deletions
diff --git a/elm/User/Edit.elm b/elm/User/Edit.elm
index 10d23bba..380ac9fb 100644
--- a/elm/User/Edit.elm
+++ b/elm/User/Edit.elm
@@ -190,7 +190,7 @@ view model =
, perm opts.perm_dbmod <| label [] [ inputCheck "" m.perm_edit (Admin << PermEdit), text " edit*", br_ 1 ]
, perm opts.perm_imgmod <| label [] [ inputCheck "" m.perm_imgvote (Admin << PermImgvote), text " imgvote* (existing votes will stop counting when unset)", br_ 1 ]
, perm False <| label [] [ inputCheck "" m.perm_imgmod (Admin << PermImgmod), text " imgmod", br_ 1 ]
- , perm opts.perm_tagmod <| label [] [ inputCheck "" m.perm_tag (Admin << PermTag), text " tag*", br_ 1 ]
+ , perm opts.perm_tagmod <| label [] [ inputCheck "" m.perm_tag (Admin << PermTag), text " tag* (existing tag votes will stop counting when unset)", br_ 1 ]
, perm False <| label [] [ inputCheck "" m.perm_dbmod (Admin << PermDbmod), text " dbmod", br_ 1 ]
, perm False <| label [] [ inputCheck "" m.perm_tagmod (Admin << PermTagmod), text " tagmod", br_ 1 ]
, perm False <| label [] [ inputCheck "" m.perm_usermod (Admin << PermUsermod), text " usermod", br_ 1 ]