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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user