fix profile status filtering for hosts (#11420)

quick fix for verifying status filtering for hosts

- [x] Manual QA for all new/changed functionality
This commit is contained in:
Gabriel Hernandez 2023-04-28 18:27:36 +01:00 committed by GitHub
parent 48c6f9bf53
commit bd372346ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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",
},
];