diff options
author | Sascha <GlancingMind@outlook.com> | 2021-03-30 16:25:44 +0200 |
---|---|---|
committer | Sascha <GlancingMind@outlook.com> | 2021-04-08 14:57:39 +0200 |
commit | 4d4172bb4c7bac5f801ef67f60ff9c58021d3080 (patch) | |
tree | c091ebbd1b6220c0467ab9a32e0577f2068f0127 /webui/src/pages/list/BugRow.tsx | |
parent | f5df854def95e35e6fc2b408ecf746dcc0a8d38a (diff) | |
download | git-bug-4d4172bb4c7bac5f801ef67f60ff9c58021d3080.tar.gz |
Cut of very long labels with an ellipse
Diffstat (limited to 'webui/src/pages/list/BugRow.tsx')
-rw-r--r-- | webui/src/pages/list/BugRow.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webui/src/pages/list/BugRow.tsx b/webui/src/pages/list/BugRow.tsx index 190370b0..62f8df97 100644 --- a/webui/src/pages/list/BugRow.tsx +++ b/webui/src/pages/list/BugRow.tsx @@ -100,7 +100,7 @@ function BugRow({ bug }: Props) { {bug.labels.length > 0 && ( <span className={classes.labels}> {bug.labels.map((l) => ( - <Label key={l.name} label={l} /> + <Label key={l.name} label={l} maxWidth="40ch" /> ))} </span> )} |