mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
Add missing call to new query path making function
This commit is contained in:
parent
ab504d766a
commit
11f9dcaa61
1 changed files with 3 additions and 1 deletions
|
|
@ -486,7 +486,9 @@ const HostDetailsPage = ({
|
|||
};
|
||||
|
||||
const onQueryHostCustom = () => {
|
||||
router.push(PATHS.NEW_QUERY + TAGGED_TEMPLATES.queryByHostRoute(host?.id));
|
||||
router.push(
|
||||
PATHS.NEW_QUERY() + TAGGED_TEMPLATES.queryByHostRoute(host?.id)
|
||||
);
|
||||
};
|
||||
|
||||
const onQueryHostSaved = (selectedQuery: ISchedulableQuery) => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue