mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 01:18:42 +00:00
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:
parent
48c6f9bf53
commit
bd372346ed
1 changed files with 4 additions and 4 deletions
|
|
@ -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",
|
||||
},
|
||||
];
|
||||
|
|
|
|||
Loading…
Reference in a new issue