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:
parent
527df864bb
commit
7958e2a9b5
1 changed files with 1 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue