diff --git a/software/src/pages/locations/locationDetailPage/index.vue b/software/src/pages/locations/locationDetailPage/index.vue
index eaae81b..7d3dac9 100644
--- a/software/src/pages/locations/locationDetailPage/index.vue
+++ b/software/src/pages/locations/locationDetailPage/index.vue
@@ -18,20 +18,21 @@ const location = ref
(new LocationModel())
feedbackStore.fetchDataFromServerInProgress = true
-getLocation(String(router.currentRoute.value.params.locationName).replaceAll('-', ' '))
+getLocation(String(router.currentRoute.value.params.locationName))
.then(result => {
location.value = result.data
feedbackStore.fetchDataFromServerInProgress = false
+ console.log(location.value.seatGroups)
})
{{ location.address }}
diff --git a/software/src/pages/locations/locationsPage/index.vue b/software/src/pages/locations/locationsPage/index.vue
index 7d8acd2..06792c0 100644
--- a/software/src/pages/locations/locationsPage/index.vue
+++ b/software/src/pages/locations/locationsPage/index.vue
@@ -49,7 +49,7 @@ shoppingStore.getCities()
diff --git a/software/src/router/routes.ts b/software/src/router/routes.ts
index d7b4065..12f4c7a 100644
--- a/software/src/router/routes.ts
+++ b/software/src/router/routes.ts
@@ -14,7 +14,7 @@ const routes = [
{ path: "/", component: HomePage },
{ path: '/basket', component: BasketPage },
{ path: '/locations', component: LocationsPage },
- { path: '/locations/:locationName', component: LocationDetailPage },
+ { path: '/locations/:locationName', name: 'locationDetails', component: LocationDetailPage },
{ path: '/bands/:bandName', component: BandDetailPage },
{ path: '/concert/:id', component: TicketOrderPage },
{ path: '/events', component: EventsPage },