mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-23 00:22:19 +01:00
fix: make the tags column have a fixed width (#2451)
By setting a fixed width in the tags column we can save some extra space.
This commit is contained in:
parent
e25a108ea8
commit
538bbe7105
@ -65,6 +65,7 @@ const columns = [
|
||||
row.tags?.map(({ type, value }) => `${type}:${value}`).join('\n') ||
|
||||
'',
|
||||
Cell: FeatureTagCell,
|
||||
width: 80,
|
||||
searchable: true,
|
||||
},
|
||||
{
|
||||
|
@ -202,6 +202,7 @@ export const ProjectFeatureToggles = ({
|
||||
?.map(({ type, value }) => `${type}:${value}`)
|
||||
.join('\n') || '',
|
||||
Cell: FeatureTagCell,
|
||||
width: 80,
|
||||
hideInMenu: true,
|
||||
searchable: true,
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user