Browse Source

fix(ManageStation): removed reference to different versions of modal

Signed-off-by: Jonathan <theflametrooper@gmail.com>
Jonathan 3 years ago
parent
commit
72e6296539
2 changed files with 0 additions and 10 deletions
  1. 0 5
      frontend/src/pages/Admin/tabs/Stations.vue
  2. 0 5
      frontend/src/pages/Station/index.vue

+ 0 - 5
frontend/src/pages/Admin/tabs/Stations.vue

@@ -225,7 +225,6 @@ export default {
 	data() {
 		return {
 			editingStationId: "",
-			manageStationVersion: "",
 			newStation: {
 				genres: [],
 				blacklistedGenres: []
@@ -244,10 +243,6 @@ export default {
 		})
 	},
 	mounted() {
-		lofig.get("manageStationVersion", manageStationVersion => {
-			this.manageStationVersion = manageStationVersion;
-		});
-
 		if (this.socket.readyState === 1) this.init();
 		ws.onConnect(() => this.init());
 

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

@@ -669,7 +669,6 @@ export default {
 		return {
 			utils,
 			isIOS: navigator.platform.match(/iPhone|iPod|iPad/),
-			manageStationVersion: "",
 			title: "Station",
 			loading: true,
 			exists: true,
@@ -733,10 +732,6 @@ export default {
 		})
 	},
 	async mounted() {
-		lofig.get("manageStationVersion", manageStationVersion => {
-			this.manageStationVersion = manageStationVersion;
-		});
-
 		this.editSongModalWatcher = this.$store.watch(
 			state => state.modals.editSong.video.paused,
 			paused => {