Add missing call to new query path making function

This commit is contained in:
Jacob Shandling 2023-08-04 13:03:12 -07:00
parent ab504d766a
commit 11f9dcaa61

View file

@ -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) => {