mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
Fix UI bug that caused "Show inherited policies" button to be incorrectly hidden (#11140)
This commit is contained in:
parent
d1cf7e5a44
commit
ea10d94d55
2 changed files with 3 additions and 1 deletions
|
|
@ -0,0 +1,2 @@
|
|||
- Fixed a UI bug introduced in version 4.30 where the "Show inherited policies" button was not being
|
||||
displayed.
|
||||
|
|
@ -124,7 +124,7 @@ const ManagePolicyPage = ({
|
|||
return globalPoliciesAPI.loadAll();
|
||||
},
|
||||
{
|
||||
enabled: isRouteOk && !teamIdForApi,
|
||||
enabled: isRouteOk,
|
||||
select: (data) => data.policies,
|
||||
staleTime: 5000,
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue