mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
fix broken search for manage host page (#8213)
This commit is contained in:
parent
57c40ac056
commit
06a9e886a1
1 changed files with 1 additions and 8 deletions
|
|
@ -1598,14 +1598,7 @@ const ManageHostsPage = ({
|
|||
};
|
||||
|
||||
const renderTable = () => {
|
||||
if (
|
||||
!config ||
|
||||
!currentUser ||
|
||||
!hosts ||
|
||||
!teamSync ||
|
||||
isHostCountLoading ||
|
||||
isHostsLoading
|
||||
) {
|
||||
if (!config || !currentUser || !hosts || !teamSync) {
|
||||
return <Spinner />;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue