소스 검색

fix(ui): correct inline style syntax between clients count and active clients count on inbounds page (#5114)

* fix(ui): correct inline style syntax in client counts column on inbounds page

* fix(ui): correct inline style syntax between clients count and active clients count on inbounds page
吉姆·塞尔夫 18 시간 전
부모
커밋
dbb269cf6a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      frontend/src/pages/inbounds/list/useInboundColumns.tsx

+ 1 - 1
frontend/src/pages/inbounds/list/useInboundColumns.tsx

@@ -159,7 +159,7 @@ export function useInboundColumns({
           if (!cc) return null;
           return (
             <>
-              <Tag className="client-count-tag" style={{ margin: 0, padding: '0 2px' }}>
+              <Tag className="client-count-tag" style={{ margin: 0, marginRight: 4, padding: '0 2px' }}>
                 <TeamOutlined /> {cc.clients}
               </Tag>
               {cc.active.length > 0 && (