Compare commits

..

2 Commits

Author SHA1 Message Date
c1ceae5aa9 Merge pull request 'fix radio cover in histroy item' () from dev into main
Reviewed-on: 
2023-09-22 15:00:50 +02:00
Artem Anufrij
4b266c4738 fix radio cover in histroy item 2023-09-22 14:59:31 +02:00
2 changed files with 2 additions and 2 deletions
src
components
store/modules/radios

@ -124,7 +124,7 @@ export default {
let item = { let item = {
id: this.selectedRadio._id, id: this.selectedRadio._id,
cover128: this.selectedRadio.cover128, covers: { cover128: this.selectedRadio.covers.cover128 },
name: this.selectedRadio.name, name: this.selectedRadio.name,
type: "radio", type: "radio",
}; };

@ -1,4 +1,4 @@
export default { export default {
collection: [], collection: [],
selectedRadio: {}, selectedRadio: { covers: {} },
} }