about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorskipness <skipness123@gmail.com>2023-05-31 08:41:21 +0800
committerGitHub <noreply@github.com>2023-05-30 19:41:21 -0500
commit023922579647ce08f716e1b566cc974b8d491a06 (patch)
tree2f2bc7ff75994b0cdc411acf5ca7bb4105212754 /src
parent8258317c38a685c80492b7d5448ae565c8ff6e22 (diff)
downloadvoidsky-023922579647ce08f716e1b566cc974b8d491a06.tar.zst
fix: content trimmed in server input modal (#733)
Diffstat (limited to 'src')
-rw-r--r--src/view/com/modals/Modal.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/modals/Modal.tsx b/src/view/com/modals/Modal.tsx
index 060129099..1043db20e 100644
--- a/src/view/com/modals/Modal.tsx
+++ b/src/view/com/modals/Modal.tsx
@@ -123,7 +123,7 @@ export const ModalsContainer = observer(function ModalsContainer() {
       snapPoints={snapPoints}
       index={store.shell.isModalActive ? 0 : -1}
       enablePanDownToClose
-      keyboardBehavior="extend"
+      android_keyboardInputMode="adjustResize"
       keyboardBlurBehavior="restore"
       backdropComponent={
         store.shell.isModalActive ? createCustomBackdrop(onClose) : undefined