summaryrefslogtreecommitdiff
path: root/elm/Lib/Editsum.elm
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2019-12-06 13:37:24 +0100
committerYorhel <git@yorhel.nl>2019-12-06 13:37:24 +0100
commitcd57e89ecfadbdc49b02fc0d19c043cdf7229a66 (patch)
treebd8bd260f79c51221bca1ae1ee24f7b9753009fc /elm/Lib/Editsum.elm
parent6487d1e89b14a4c85bb47c03fbe4d7e2f37e73d3 (diff)
Add link to d9#3 to quick reply box + allow customizing TextPreview header
Diffstat (limited to 'elm/Lib/Editsum.elm')
-rw-r--r--elm/Lib/Editsum.elm7
1 files changed, 2 insertions, 5 deletions
diff --git a/elm/Lib/Editsum.elm b/elm/Lib/Editsum.elm
index 99a4be29..09553a40 100644
--- a/elm/Lib/Editsum.elm
+++ b/elm/Lib/Editsum.elm
@@ -57,9 +57,6 @@ view model =
in fieldset [] <|
(if model.authmod then lockhid else [])
++
- [ h2 []
- [ text "Edit summary"
- , b [class "standout"] [text " (English please!)"]
- ]
- , TP.view "" model.editsum Editsum 600 [rows 4, cols 50, minlength 2, maxlength 5000, required True]
+ [ TP.view "" model.editsum Editsum 600 [rows 4, cols 50, minlength 2, maxlength 5000, required True]
+ [ b [class "title"] [ text "Edit summary", b [class "standout"] [text " (English please!)"] ] ]
]