Skip to content

Commit

Permalink
Allow the report table columns to grow to fill available space (#3872)
Browse files Browse the repository at this point in the history
* allow report table columns to grow to fit

* note
  • Loading branch information
matt-fidd authored Nov 21, 2024
1 parent 19f0037 commit 022b9b7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ export function ReportTableHeader({
style={{
width: compact ? 80 : 125,
flexShrink: 0,
flexGrow: 1,
}}
valueStyle={compactStyle}
value={
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ export const ReportTableRow = memo(
style={{
width: compact ? 80 : 125,
flexShrink: 0,
flexGrow: 1,
}}
valueStyle={compactStyle}
/>
Expand Down
6 changes: 6 additions & 0 deletions upcoming-release-notes/3872.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
category: Enhancements
authors: [matt-fidd]
---

Allow report table columns to grow to fit available space

0 comments on commit 022b9b7

Please sign in to comment.