From 041c06560c8e37755a9ad036a311a43d6fb13e99 Mon Sep 17 00:00:00 2001 From: Tymoteusz Czech <2625371+Tymek@users.noreply.github.com> Date: Mon, 24 Jul 2023 16:00:59 +0200 Subject: [PATCH] fix: drop staleness column form features archive (#4338) ## About the changes Drop "status" (stale or active) column from features archive table. Closes #4315 --- .../src/component/archive/ArchiveTable/ArchiveTable.tsx | 9 --------- 1 file changed, 9 deletions(-) diff --git a/frontend/src/component/archive/ArchiveTable/ArchiveTable.tsx b/frontend/src/component/archive/ArchiveTable/ArchiveTable.tsx index e907c518f9..daef549b57 100644 --- a/frontend/src/component/archive/ArchiveTable/ArchiveTable.tsx +++ b/frontend/src/component/archive/ArchiveTable/ArchiveTable.tsx @@ -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',