1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

fix: drop staleness column form features archive (#4338)

## About the changes
Drop "status" (stale or active) column from features archive table.

Closes #4315
This commit is contained in:
Tymoteusz Czech 2023-07-24 16:00:59 +02:00 committed by GitHub
parent 88b935fdba
commit 041c06560c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -172,15 +172,6 @@ export const ArchiveTable = ({
},
]
: []),
{
Header: 'State',
accessor: 'stale',
Cell: FeatureStaleCell,
sortType: 'boolean',
maxWidth: 120,
filterName: 'state',
filterParsing: (value: any) => (value ? 'stale' : 'active'),
},
{
Header: 'Actions',
id: 'Actions',