From 023922579647ce08f716e1b566cc974b8d491a06 Mon Sep 17 00:00:00 2001 From: skipness Date: Wed, 31 May 2023 08:41:21 +0800 Subject: [PATCH] fix: content trimmed in server input modal (#733) --- src/view/com/modals/Modal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/view/com/modals/Modal.tsx b/src/view/com/modals/Modal.tsx index 06012909..1043db20 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