fix(ui): remove type column
This commit is contained in:
parent
dbff25713e
commit
67186b2997
2 changed files with 1 additions and 3 deletions
|
|
@ -30,7 +30,7 @@ function FFlagItem({ flag }: { flag: FeatureFlag }) {
|
|||
<Link style={{ flex: 1 }} to={`feature-flags/${flag.featureFlagId}`}>
|
||||
<div className={'flex items-center gap-2'}>
|
||||
<Icon name={flagIcon} size={32} />
|
||||
<div className="flex flex-col gap-1" style={{ width: 200 }}>
|
||||
<div className="flex flex-col gap-1" style={{ width: 300 }}>
|
||||
<span className={'link'}>{flag.flagKey}</span>
|
||||
{flag.description
|
||||
? (
|
||||
|
|
@ -39,7 +39,6 @@ function FFlagItem({ flag }: { flag: FeatureFlag }) {
|
|||
</div>
|
||||
</div>
|
||||
</Link>
|
||||
<div style={{ flex: 1 }}>{flag.isSingleOption ? 'Single Variant' : 'Multivariant'}</div>
|
||||
<div style={{ flex: 1 }}>{resentOrDate(flag.updatedAt || flag.createdAt)}</div>
|
||||
<div style={{ flex: 1 }} className={'flex items-center gap-2 capitalize'}>
|
||||
<Icon name={'person-fill'} />
|
||||
|
|
|
|||
|
|
@ -78,7 +78,6 @@ function FFlagsList({ siteId }: { siteId: string }) {
|
|||
</div>
|
||||
<div className={'flex items-center font-semibold border-b py-2 px-6'}>
|
||||
<div style={{ flex: 1 }}>Key</div>
|
||||
<div style={{ flex: 1 }}>Type</div>
|
||||
<div style={{ flex: 1 }}>Last modified</div>
|
||||
<div style={{ flex: 1 }}>By</div>
|
||||
<div style={{ marginLeft: 'auto', width: 115 }}>Status</div>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue