I'm trying to check routes with Router.isActive
If the current route is /animals/edit
(router.isActive('/animals/edit')
is true.
But if the current route is /animals/edit/23
(router.isActive('/animals/edit/')
is false.
How can I make a route that encompasses trailing params?