aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Ángel Moreno <mail@migalmoreno.com>2024-06-04 14:08:30 +0200
committerMiguel Ángel Moreno <mail@migalmoreno.com>2024-06-04 14:08:30 +0200
commitc015fb204ef52e080cfbe621dc6e9eba44825124 (patch)
treee4e266f227f8a9d5e70f3f5b0c8996d41b58532c
parentda7fea4155053a98d425ac2e38a5051951f4e53a (diff)
feat: show notification on adding item to queue
-rw-r--r--src/frontend/tubo/components/items.cljs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/tubo/components/items.cljs b/src/frontend/tubo/components/items.cljs
index 8a63cd0..e23b823 100644
--- a/src/frontend/tubo/components/items.cljs
+++ b/src/frontend/tubo/components/items.cljs
@@ -16,7 +16,7 @@
items (if (or (= type "stream") audio-streams video-streams)
[{:label "Add to queue"
:icon [:i.fa-solid.fa-headphones]
- :on-click #(rf/dispatch [:player/switch-to-background item])}
+ :on-click #(rf/dispatch [:player/switch-to-background item true])}
{:label "Play radio"
:icon [:i.fa-solid.fa-tower-cell]
:on-click #(rf/dispatch [:player/start-radio item])}