Pārlūkot izejas kodu

fix(Station page): /:station-id should automatically be changed to /:station-name

Signed-off-by: Jonathan <theflametrooper@gmail.com>
Jonathan 4 gadi atpakaļ
vecāks
revīzija
5a0c46e0d7
1 mainītis faili ar 6 papildinājumiem un 0 dzēšanām
  1. 6 0
      frontend/src/pages/Station/index.vue

+ 6 - 0
frontend/src/pages/Station/index.vue

@@ -1452,6 +1452,12 @@ export default {
 						theme
 					} = res.data;
 
+					// change url to use station name instead of station id
+					if (name !== this.stationIdentifier) {
+						// eslint-disable-next-line no-restricted-globals
+						history.pushState({}, null, name);
+					}
+
 					this.joinStation({
 						_id,
 						name,