From 9074bff5422778f0761ae6346e00d0cd586b3145 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Sun, 1 Sep 2019 09:40:25 -0500 Subject: [PATCH] mv list urls back under lists path for more url flexibility --- src/FilterLists.Web.V2/src/components/ListInfoButton.tsx | 2 +- src/FilterLists.Web.V2/src/components/listsTable/ListDrawer.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/FilterLists.Web.V2/src/components/ListInfoButton.tsx b/src/FilterLists.Web.V2/src/components/ListInfoButton.tsx index cfc6f11d7..9dc45da48 100644 --- a/src/FilterLists.Web.V2/src/components/ListInfoButton.tsx +++ b/src/FilterLists.Web.V2/src/components/ListInfoButton.tsx @@ -10,7 +10,7 @@ interface Props { }; export const ListInfoButton = (props: RouteComponentProps & Props) => { - const listPath = `/${slugify(props.list.name)}`; + const listPath = `/lists/${slugify(props.list.name)}`; return (