Poprawki struktury projektu

This commit is contained in:
2021-05-03 20:56:47 +02:00
parent b046b12905
commit 98499f1141
14 changed files with 118 additions and 88 deletions
+1 -6
View File
@@ -281,14 +281,9 @@ export default class StationTable extends styleMixin {
if (!station) return;
if (!station.online) {
window.location.href = station.stationURL;
return;
}
this.$router.push({
name: "SceneryView",
query: { hash: station.stationHash },
query: { station: station.stationName.replaceAll(" ", "_") },
});
}
}