From d5f8129b71602e66a6c8efebd99ee7f5f656e85e Mon Sep 17 00:00:00 2001 From: chme Date: Mon, 11 Jan 2021 19:47:27 +0100 Subject: [PATCH] [web-src] Fix for wrong AirPlay output icon --- web-src/src/components/NavbarItemOutput.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web-src/src/components/NavbarItemOutput.vue b/web-src/src/components/NavbarItemOutput.vue index 7af0f22e..3218a03b 100644 --- a/web-src/src/components/NavbarItemOutput.vue +++ b/web-src/src/components/NavbarItemOutput.vue @@ -7,7 +7,7 @@ - + @@ -42,7 +42,7 @@ export default { computed: { type_class () { - if (this.output.type === 'AirPlay') { + if (this.output.type.startsWith('AirPlay')) { return 'mdi-airplay' } else if (this.output.type === 'Chromecast') { return 'mdi-cast'