From e6e4db4317e41a73f718fdcae5ddb0ec0b25d92d Mon Sep 17 00:00:00 2001 From: apophisnow Date: Fri, 6 Mar 2026 13:09:48 -0800 Subject: [PATCH 01/15] Hide add/boost buttons on search results until track is clicked Track items now require a tap to expand and reveal the Add and Boost action buttons, resulting in a cleaner search results interface. Artist items continue to show the View Songs button immediately. Co-Authored-By: Claude Opus 4.6 --- .../party-mode/PartyModeResultItem.vue | 108 +++++++++++------- 1 file changed, 67 insertions(+), 41 deletions(-) diff --git a/src/components/party-mode/PartyModeResultItem.vue b/src/components/party-mode/PartyModeResultItem.vue index 82c8a7bcd..4c31f9be0 100644 --- a/src/components/party-mode/PartyModeResultItem.vue +++ b/src/components/party-mode/PartyModeResultItem.vue @@ -1,5 +1,9 @@ diff --git a/src/views/PartyModeGuestView.vue b/src/views/PartyModeGuestView.vue index e16b06a5b..9f3fe6360 100644 --- a/src/views/PartyModeGuestView.vue +++ b/src/views/PartyModeGuestView.vue @@ -329,9 +329,7 @@ const addToQueue = async (item: Track | Artist, position: "next" | "end") => { if (position === "end" && addQueueTokens.value <= 0) { const minutesUntilNext = getTimeUntilNextAddQueueToken(); toast.warning( - $t("providers.party_mode.add_queue_limit_reached", [ - minutesUntilNext, - ]), + $t("providers.party_mode.add_queue_limit_reached", [minutesUntilNext]), ); return; }