From bd372346ed3510e541b7434005d88633c9ac959a Mon Sep 17 00:00:00 2001 From: Gabriel Hernandez Date: Fri, 28 Apr 2023 18:27:36 +0100 Subject: [PATCH] fix profile status filtering for hosts (#11420) quick fix for verifying status filtering for hosts - [x] Manual QA for all new/changed functionality --- frontend/pages/hosts/ManageHostsPage/HostsPageConfig.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/pages/hosts/ManageHostsPage/HostsPageConfig.tsx b/frontend/pages/hosts/ManageHostsPage/HostsPageConfig.tsx index 7b768baf0d..3b1be798d4 100644 --- a/frontend/pages/hosts/ManageHostsPage/HostsPageConfig.tsx +++ b/frontend/pages/hosts/ManageHostsPage/HostsPageConfig.tsx @@ -55,8 +55,8 @@ export const getHostSelectStatuses = (isSandboxMode = false) => { export const MAC_SETTINGS_FILTER_OPTIONS = [ { disabled: false, - label: "Latest", - value: "latest", + label: "Verifying", + value: "verifying", }, { disabled: false, @@ -65,7 +65,7 @@ export const MAC_SETTINGS_FILTER_OPTIONS = [ }, { disabled: false, - label: "Failing", - value: "failing", + label: "Failed", + value: "failed", }, ];