From 77e4979f79b9c4ddd47afebe55440b59ef805a1e Mon Sep 17 00:00:00 2001 From: Leonidas Spyropoulos <artafinde@archlinux.org> Date: Sun, 9 Jun 2024 23:20:43 +0100 Subject: [PATCH] fix: remove the extra spaces in requests textarea fixes: #503 Signed-off-by: Leonidas Spyropoulos <artafinde@archlinux.org> --- templates/pkgbase/request.html | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/templates/pkgbase/request.html b/templates/pkgbase/request.html index 413146f01..1e3d8c196 100644 --- a/templates/pkgbase/request.html +++ b/templates/pkgbase/request.html @@ -65,9 +65,7 @@ <label for="id_comments">{{ "Comments" | tr }}:</label> <textarea id="id_comments" name="comments" rows="5" cols="50" - maxlength="{{ max_chars_comment }}" - >{{ comments or '' }} - </textarea> + maxlength="{{ max_chars_comment }}">{{ comments or '' }}</textarea> </p> <p id="deletion_hint"> -- GitLab