From cea0bf09d0891ef87ffd8a38fe5d09bd7d9f2b2f Mon Sep 17 00:00:00 2001 From: chme Date: Sun, 3 May 2020 07:10:30 +0200 Subject: [PATCH] [web-src] Add cast icon for chromcast outputs --- web-src/src/components/NavbarItemOutput.vue | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/web-src/src/components/NavbarItemOutput.vue b/web-src/src/components/NavbarItemOutput.vue index df52b4bd..7af0f22e 100644 --- a/web-src/src/components/NavbarItemOutput.vue +++ b/web-src/src/components/NavbarItemOutput.vue @@ -3,7 +3,13 @@
@@ -38,6 +44,8 @@ export default { type_class () { if (this.output.type === 'AirPlay') { return 'mdi-airplay' + } else if (this.output.type === 'Chromecast') { + return 'mdi-cast' } else if (this.output.type === 'fifo') { return 'mdi-pipe' } else {