diff options
author | skipness <skipness123@gmail.com> | 2023-05-31 08:41:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-30 19:41:21 -0500 |
commit | 023922579647ce08f716e1b566cc974b8d491a06 (patch) | |
tree | 2f2bc7ff75994b0cdc411acf5ca7bb4105212754 /src | |
parent | 8258317c38a685c80492b7d5448ae565c8ff6e22 (diff) | |
download | voidsky-023922579647ce08f716e1b566cc974b8d491a06.tar.zst |
fix: content trimmed in server input modal (#733)
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/modals/Modal.tsx | 2 |
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 |