瀏覽代碼

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

Signed-off-by: Jonathan <theflametrooper@gmail.com>
Jonathan 4 年之前
父節點
當前提交
5a0c46e0d7
共有 1 個文件被更改,包括 6 次插入0 次删除
  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,