summaryrefslogtreecommitdiff
path: root/elm
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2020-09-03 13:49:38 +0200
committerYorhel <git@yorhel.nl>2020-09-03 13:49:38 +0200
commit33c940c922d25a6fad9c2707eda41e022fd73ad5 (patch)
tree919abc1522ad846a11282ff5e557fb0aa28b083d /elm
parentc8e5426bfa7d57e6345070d98405ea4eed81ad93 (diff)
Reviews.Edit: Increase size of textarea
Diffstat (limited to 'elm')
-rw-r--r--elm/Reviews/Edit.elm2
1 files changed, 1 insertions, 1 deletions
diff --git a/elm/Reviews/Edit.elm b/elm/Reviews/Edit.elm
index 99a5b48e..5b3bc347 100644
--- a/elm/Reviews/Edit.elm
+++ b/elm/Reviews/Edit.elm
@@ -145,7 +145,7 @@ view model =
]
, tr [ class "newpart" ] [ td [ colspan 2 ] [ text "" ] ]
, formField "text::Review"
- [ TP.view "sum" model.text Text 700 ([rows (if model.isfull then 15 else 5), cols 50] ++ GRE.valText)
+ [ TP.view "sum" model.text Text 700 ([rows (if model.isfull then 30 else 10), cols 50] ++ GRE.valText)
[ a [ href "/d9#3" ] [ text "BBCode formatting supported" ] ]
, div [ style "width" "700px", style "text-align" "right" ] <|
let num c s = if c then b [ class " standout" ] [ text s ] else text s