From 5fd39722ced09c18ab3703a8df1610bdddd38075 Mon Sep 17 00:00:00 2001 From: Artem Anufrij Date: Tue, 12 Sep 2023 20:41:34 +0200 Subject: [PATCH] add radio name to the history item --- src/components/Player.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Player.vue b/src/components/Player.vue index 8977b9d..2f0181e 100644 --- a/src/components/Player.vue +++ b/src/components/Player.vue @@ -160,6 +160,7 @@ export default { let item = { id: this.selectedRadio._id, cover128: this.selectedRadio.cover128, + name: this.selectedRadio.name, type: "radio", }; this.$store.dispatch("user/saveHistoryItem", item);