about summary refs log tree commit diff
path: root/src/view/com/composer/text-input/TextInput.tsx
diff options
context:
space:
mode:
authorHailey <me@haileyok.com>2024-09-27 15:26:28 -0700
committerGitHub <noreply@github.com>2024-09-27 15:26:28 -0700
commit587c0c625752964d8ce64faf1d329dce3c834a5c (patch)
tree8a345e754db3536b8d0abf875b67f0c6e200d47d /src/view/com/composer/text-input/TextInput.tsx
parent4b5d6e6efb09a714d82e2093dec39c85400a2de6 (diff)
downloadvoidsky-587c0c625752964d8ce64faf1d329dce3c834a5c.tar.zst
Rework native autocomplete (#5521)
Co-authored-by: Samuel Newman <mozzius@protonmail.com>
Diffstat (limited to 'src/view/com/composer/text-input/TextInput.tsx')
-rw-r--r--src/view/com/composer/text-input/TextInput.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/view/com/composer/text-input/TextInput.tsx b/src/view/com/composer/text-input/TextInput.tsx
index 3df9cfca4..39baa2cb6 100644
--- a/src/view/com/composer/text-input/TextInput.tsx
+++ b/src/view/com/composer/text-input/TextInput.tsx
@@ -245,7 +245,11 @@ export const TextInput = forwardRef(function TextInputImpl(
         multiline
         scrollEnabled={false}
         numberOfLines={4}
-        style={[inputTextStyle, a.w_full, {textAlignVertical: 'top'}]}
+        style={[
+          inputTextStyle,
+          a.w_full,
+          {textAlignVertical: 'top', minHeight: 60},
+        ]}
         {...props}>
         {textDecorated}
       </PasteInput>