Преглед изворни кода

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
kafka-ui-react-app/src/components/Dashboard/ClustersWidget/ClustersWidget.tsx

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