Skip to content

Commit e85db71

Browse files
authored
chore: marginally better bulk update modal sizing (#5229)
marginally better bulk update modal sizing
1 parent 8e43390 commit e85db71

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/compass-crud/src/components/bulk-update-dialog.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ const codeLightContainerStyles = css({
8383
});
8484

8585
const multilineContainerStyles = css({
86-
maxHeight: spacing[5] * 7, // fit at our default window size
86+
height: `calc(100% - ${spacing[6]})`,
8787
});
8888

8989
const bannerContainerStyles = css({
@@ -428,6 +428,7 @@ export default function BulkUpdateDialog({
428428
data-testid="bulk-update-update"
429429
onBlur={() => ({})}
430430
annotations={annotations}
431+
minLines={12}
431432
/>
432433

433434
<div className={bannerContainerStyles}>

0 commit comments

Comments
 (0)