ctucx.git: trainsearch

web based trip-planner, fork of https://cyberchaos.dev/yuka/trainsearch

commit 73de80c74a1ae1e3b5c205a3e1555578a3661c2c
parent 8adad25782ca388bc74af2aed2da0e3d18128e29
Author: Katja (ctucx) <git@ctu.cx>
Date: Fri, 31 Jan 2025 21:43:42 +0100

settingsView: remove experimental flag from profiles
1 file changed, 5 insertions(+), 5 deletions(-)
M
src/settingsView.js
|
10
+++++-----
diff --git a/src/settingsView.js b/src/settingsView.js
@@ -27,11 +27,11 @@ const settingsTemplate = () => html`
 			<label for="profile">${t('datasource')}:</label>
 			<select id="profile" @change="${(event) => {profileChangeHandler(event.target.value)}}">
 				<option value="db"    ?selected=${settings.profile === 'db'}>DB</option>
-				<option value="nahsh" ?selected=${settings.profile === 'nahsh'}>NAH.SH (${t("experimental")})</option>
-				<option value="rmv"   ?selected=${settings.profile === 'rmv'}>RMV (${t("experimental")})</option>
-				<option value="vrn"   ?selected=${settings.profile === 'vrn'}>VRN (${t("experimental")})</option>
-				<option value="bvg"   ?selected=${settings.profile === 'bvg'}>BVG (${t("experimental")})</option>
-				<option value="oebb"  ?selected=${settings.profile === 'oebb'}>ÖBB (${t("experimental")})</option>
+				<option value="nahsh" ?selected=${settings.profile === 'nahsh'}>NAH.SH</option>
+				<option value="rmv"   ?selected=${settings.profile === 'rmv'}>RMV</option>
+				<option value="vrn"   ?selected=${settings.profile === 'vrn'}>VRN</option>
+				<option value="bvg"   ?selected=${settings.profile === 'bvg'}>BVG</option>
+				<option value="oebb"  ?selected=${settings.profile === 'oebb'}>ÖBB</option>
 			</select>
 		</div>