Skip to content

Commit 309c228

Browse files
authored
Ensure TextAreaInput height is respected (#474)
* Ensure TextAreaInput height is respected * Fix indent
1 parent 3966576 commit 309c228

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/panel_material_ui/widgets/TextArea.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ export function render({model, el}) {
6262
},
6363
"& .MuiInputBase-inputMultiline": {
6464
resize: effectiveResize,
65+
height: (resizeMode === "vertical" || resizeMode === "both") ? "unset" : "100% !important",
6566
overflow: "auto"
6667
}
6768
}

0 commit comments

Comments
 (0)