Added fixed width to the tables cells (#1959)

* Added fixed width to the tables cells

* Removed affecting on other tables width
This commit is contained in:
Kirill Morozov 2022-05-16 18:51:12 +03:00 committed by GitHub
parent 527df864bb
commit 7958e2a9b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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>