소스 검색

Added fixed width to the tables cells (#1959)

* Added fixed width to the tables cells

* Removed affecting on other tables width
Kirill Morozov 3 년 전
부모
커밋
7958e2a9b5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      kafka-ui-react-app/src/components/Dashboard/ClustersWidget/ClustersWidget.tsx

+ 1 - 1
kafka-ui-react-app/src/components/Dashboard/ClustersWidget/ClustersWidget.tsx

@@ -84,7 +84,7 @@ const ClustersWidget: React.FC<Props> = ({
           <tbody>
             {chunkItem.data.map((cluster) => (
               <tr key={cluster.name}>
-                <S.TableCell maxWidth="99px">
+                <S.TableCell maxWidth="99px" width="350">
                   {cluster.readOnly && <Tag color="blue">readonly</Tag>}{' '}
                   {cluster.name}
                 </S.TableCell>