From 7683e504503e527ef749cd96468641d5d169a209 Mon Sep 17 00:00:00 2001 From: Sam Date: Tue, 17 Jul 2018 02:59:28 +1000 Subject: [PATCH] Only show now playing chip on browser route --- src/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index 7417f120..079547ad 100644 --- a/src/App.vue +++ b/src/App.vue @@ -336,7 +336,7 @@ export default { return data }, showNowPlaying: function () { - return this.chosenClient && this.chosenClient.clientPlayingMetadata && this.$route.name !== 'nowplaying' + return this.chosenClient && this.chosenClient.clientPlayingMetadata && this.$route.name === 'browse' }, showRightDrawerButton: function () { return this.ptConnected && this.chosenClient && this.ptRoom