Ver Fonte

fix: small fix for homepage station cards links

Kristian Vos há 5 anos atrás
pai
commit
cca73bd50c
1 ficheiros alterados com 4 adições e 1 exclusões
  1. 4 1
      frontend/components/pages/Home.vue

+ 4 - 1
frontend/components/pages/Home.vue

@@ -24,7 +24,10 @@
 				<router-link
 					v-for="(station, index) in stations"
 					:key="index"
-					:to="{ name: 'community', params: { id: station.name } }"
+					:to="{
+						name: 'station',
+						params: { id: station.name }
+					}"
 					class="card station-card"
 					:class="{
 						isPrivate: station.privacy === 'private',