post form height patch

This commit is contained in:
nelle 2024-07-06 19:37:26 -06:00
parent 9f0f226732
commit 80c54febcd
2 changed files with 23 additions and 1 deletions

View file

@ -15,3 +15,4 @@ To apply a patch ``git am --keep-cr --signoff < {patch}``
- [Configurable Pinned Post Limit](./patches/configurable-pinLimit.patch): Allows admin to configure pinned post limit in config file
- [Fix Find Server Link](./patches/fix-findserver-link.patch): the link for "Find servers" on the signup page for locked registration instances leads to a dead page, so this replaces the link with fedidb.org
- [Remove Maintainer-info Nag](./patches/remove-maintainer-info-nag.patch): Removes nag if you dont input maintainer information
- [Post Form Height](./patches/textarea.patch): Increases the post form height for usability.

21
patches/textarea.patch Normal file
View file

@ -0,0 +1,21 @@
From a328de1c2cd89bd3973c404a8d6a580a8a25b032 Mon Sep 17 00:00:00 2001
From: limepotato <limepot@protonmail.ch>
Date: Fri, 5 Jul 2024 18:14:26 -0600
Subject: [PATCH] Clean textarea syling
---
packages/client/src/components/MkPostForm.vue | 1 +
1 files changed, 2 insertions(+)
diff --git a/packages/client/src/components/MkPostForm.vue b/packages/client/src/components/MkPostForm.vue
index 6619c6b95..635a6cd98 100644
--- a/packages/client/src/components/MkPostForm.vue
+++ b/packages/client/src/components/MkPostForm.vue
@@ -132,6 +132,7 @@
v-model="text"
class="text"
:class="{ withCw: useCw }"
+ :style="'height: 300px'"
:disabled="posting"
:placeholder="placeholder"
data-cy-post-form-text