mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-27 15:45:56 -05:00
[web] Fix property which is not required
This commit is contained in:
parent
0fc2032e4a
commit
e7ae478e9b
@ -111,7 +111,12 @@ import webapi from '@/webapi'
|
|||||||
export default {
|
export default {
|
||||||
name: 'ModalDialogTrackSpotify',
|
name: 'ModalDialogTrackSpotify',
|
||||||
props: {
|
props: {
|
||||||
album: { required: true, type: Object },
|
album: {
|
||||||
|
default() {
|
||||||
|
return {}
|
||||||
|
},
|
||||||
|
type: Object
|
||||||
|
},
|
||||||
show: Boolean,
|
show: Boolean,
|
||||||
track: { required: true, type: Object }
|
track: { required: true, type: Object }
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user