mirror of
https://github.com/owntone/owntone-server.git
synced 2025-11-23 11:07:56 -05:00
[web] Fix for playback not working in the Files page #1946
This commit is contained in:
814
web-src/package-lock.json
generated
814
web-src/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -16,14 +16,14 @@
|
||||
"@mdi/js": "^7.4.47",
|
||||
"@spotify/web-api-ts-sdk": "^1.2.0",
|
||||
"@ts-pro/vue-eternal-loading": "^1.3.1",
|
||||
"axios": "^1.12.2",
|
||||
"axios": "^1.13.2",
|
||||
"bulma": "^1.0.4",
|
||||
"luxon": "^3.7.2",
|
||||
"mdi-vue": "^3.0.13",
|
||||
"pinia": "^3.0.3",
|
||||
"pinia": "^3.0.4",
|
||||
"reconnectingwebsocket": "^1.0.0",
|
||||
"vue": "^3.5.22",
|
||||
"vue-i18n": "^11.1.12",
|
||||
"vue": "^3.5.24",
|
||||
"vue-i18n": "^11.2.1",
|
||||
"vue-router": "^4.6.3",
|
||||
"vue3-click-away": "^1.2.4",
|
||||
"vue3-lazyload": "^0.3.8",
|
||||
@@ -31,12 +31,12 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@intlify/unplugin-vue-i18n": "^11.0.1",
|
||||
"@vitejs/plugin-vue": "^6.0.1",
|
||||
"eslint": "^9.38.0",
|
||||
"@vitejs/plugin-vue": "^6.0.2",
|
||||
"eslint": "^9.39.1",
|
||||
"eslint-config-prettier": "^10.1.8",
|
||||
"eslint-plugin-vue": "^10.5.1",
|
||||
"eslint-plugin-vue": "^10.6.0",
|
||||
"prettier": "^3.6.2",
|
||||
"sass": "^1.93.2",
|
||||
"vite": "^7.1.11"
|
||||
"sass": "^1.94.2",
|
||||
"vite": "^7.2.4"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -73,6 +73,9 @@ export default {
|
||||
current() {
|
||||
return this.$route.query?.directory || '/'
|
||||
},
|
||||
expression() {
|
||||
return `path starts with "${this.current}" order by path asc`
|
||||
},
|
||||
name() {
|
||||
if (this.current !== '/') {
|
||||
return this.current?.slice(this.current.lastIndexOf('/') + 1)
|
||||
@@ -81,7 +84,7 @@ export default {
|
||||
},
|
||||
playable() {
|
||||
return {
|
||||
expression: `path starts with "${this.current}" order by path asc`,
|
||||
expression: this.expression,
|
||||
name: this.current,
|
||||
properties: [
|
||||
{ key: 'property.folders', value: this.directories.length },
|
||||
|
||||
Reference in New Issue
Block a user