From f9a82c121e961dc6d7c0d8fceb1b04b838aad180 Mon Sep 17 00:00:00 2001 From: Stefan Kratochwil Date: Tue, 27 Jan 2026 20:19:07 +0100 Subject: [PATCH] feat: make intents explicit and rename screen accordingly --- software/frontend/index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/software/frontend/index.html b/software/frontend/index.html index a36fa06..6e6068f 100644 --- a/software/frontend/index.html +++ b/software/frontend/index.html @@ -147,7 +147,7 @@ - + @@ -243,7 +243,7 @@ -
+

Playlist Editor

@@ -655,7 +655,7 @@ document.getElementById('playlist-edit-removetrack').addEventListener("click", (e) => deleteSelectedTracks()); document.getElementById('playlist-edit-back').addEventListener("click", (e) => showScreen('playlist')); document.getElementById('playlist-edit-addtrack').addEventListener("click", (e) => { - showScreen("playlist_filebrowser"); + showScreen("filebrowser", "playlist"); }); document.getElementById('playlist-edit-save').addEventListener("click", (e) => save()); } @@ -787,7 +787,7 @@ /* ---------------------------------------- PLAYLIST EDITOR LOGIC - ADD FILES SCREEN ------------------------------------------- */ - Screens.playlist_filebrowser = (() => { + Screens.filebrowser = (() => { let isFilesystemMode = false; function init() {