[web] Fix playlist save not working

This commit is contained in:
Alain Nussbaumer
2025-02-16 11:07:33 +01:00
parent aaea7135a0
commit 330023c940
5 changed files with 33 additions and 25 deletions

View File

@@ -4,6 +4,8 @@ export const useConfigurationStore = defineStore('ConfigurationStore', {
state: () => ({
buildoptions: [],
version: '',
websocket_port: 0
websocket_port: 0,
allow_modifying_stored_playlists: false,
default_playlist_directory: ''
})
})