fix(PromptPopup): Textarea overflow causes modal's close button unclickable (#7266)

fix(PromptPopup): Textarea overflow causes modal's close button  unclickable.
This commit is contained in:
Kingsword 2025-06-17 08:46:24 +08:00 committed by GitHub
parent 341614b586
commit 83a9b2564c

View File

@ -72,6 +72,11 @@ const PromptPopupContainer: React.FC<Props> = ({
placeholder={inputPlaceholder}
value={value}
onChange={(e) => setValue(e.target.value)}
styles={{
textarea: {
maxHeight: '80vh'
}
}}
allowClear
onKeyDown={(e) => {
const isEnterPressed = e.keyCode === 13