Quellcode durchsuchen

Changed station mode label and play mode icons

Owen Diffey vor 4 Jahren
Ursprung
Commit
cd39bc30b7
1 geänderte Dateien mit 8 neuen und 6 gelöschten Zeilen
  1. 8 6
      frontend/src/components/modals/EditStation.vue

+ 8 - 6
frontend/src/components/modals/EditStation.vue

@@ -229,7 +229,7 @@
 					</div>
 					<!--  Buttons changing the mode of the station -->
 					<div v-if="station.type === 'community'">
-						<label class="label">Play Mode</label>
+						<label class="label">Station Mode</label>
 						<div
 							@mouseenter="modeDropdownActive = true"
 							@mouseleave="modeDropdownActive = false"
@@ -295,9 +295,9 @@
 								"
 							>
 								<i class="material-icons">{{
-									station.playMode
-										? "playlist_play"
-										: "playlist_play"
+									station.playMode === "random"
+										? "shuffle"
+										: "format_list_numbered"
 								}}</i>
 								{{
 									station.playMode === "random"
@@ -314,7 +314,7 @@
 									"
 									@click="updatePlayModeLocal('random')"
 								>
-									<i class="material-icons">playlist_play</i>
+									<i class="material-icons">shuffle</i>
 									Random
 								</button>
 							</transition>
@@ -327,7 +327,9 @@
 									"
 									@click="updatePlayModeLocal('sequential')"
 								>
-									<i class="material-icons">playlist_play</i>
+									<i class="material-icons"
+										>format_list_numbered</i
+									>
 									Sequential
 								</button>
 							</transition>