This is an automated email from the ASF dual-hosted git repository. mintsweet pushed a commit to branch fix-log-width in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
commit dd15fb2f958cd2fe0413ae1fc341cd0dad737fad Author: mintsweet <[email protected]> AuthorDate: Mon Apr 1 17:09:01 2024 +1300 fix: log width overflow --- config-ui/src/routes/onboard/components/logs.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config-ui/src/routes/onboard/components/logs.tsx b/config-ui/src/routes/onboard/components/logs.tsx index 84c74b427..9dbe8aa16 100644 --- a/config-ui/src/routes/onboard/components/logs.tsx +++ b/config-ui/src/routes/onboard/components/logs.tsx @@ -32,7 +32,7 @@ const Wrapper = styled.div` justify-content: space-between; & > span.name { - flex: auto; + width: 220px; font-weight: 600; white-space: nowrap; text-overflow: ellipsis; @@ -41,7 +41,7 @@ const Wrapper = styled.div` & > span.progress { margin-left: 12px; - flex: 0 0 60px; + flex: auto; } }
