Skip to content

Commit 53450bd

Browse files
committed
web: TacComponents: UpdateChannels: set max description column width
The description column regularily results in the table overflowing the available width of the page. Limit its maximum width to prevent that. Signed-off-by: Leonard Göhrs <l.goehrs@pengutronix.de>
1 parent 6419a45 commit 53450bd

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

web/src/TacComponents.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,7 @@ export function UpdateChannels() {
265265
{
266266
id: "description",
267267
header: "Description",
268+
maxWidth: "50em",
268269
cell: (e) => (
269270
<SpaceBetween size="xs">
270271
{e.description.split("\n").map((p) => (

0 commit comments

Comments
 (0)