Forráskód Böngészése

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

Signed-off-by: Jonathan <theflametrooper@gmail.com>
Jonathan 4 éve
szülő
commit
5a0c46e0d7
1 módosított fájl, 6 hozzáadás és 0 törlés
  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,