This is an automated email from the ASF dual-hosted git repository.

klesh pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git


The following commit(s) were added to refs/heads/main by this push:
     new 5781dd123 fix: log width overflow (#7264)
5781dd123 is described below

commit 5781dd1232a8b9ebd820cd532b513ccec356457e
Author: 青湛 <[email protected]>
AuthorDate: Mon Apr 1 21:00:12 2024 +1300

    fix: log width overflow (#7264)
---
 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;
     }
   }
 

Reply via email to