From 4ea7d7784fa484c22bba0f564fb8946cd9d52690 Mon Sep 17 00:00:00 2001 From: sapphi-red Date: Tue, 5 May 2020 19:32:47 +0900 Subject: [PATCH] =?UTF-8?q?Qall=E3=81=AE=E9=80=9A=E8=A9=B1=E4=B8=AD?= =?UTF-8?q?=E3=83=81=E3=83=A3=E3=83=B3=E3=83=8D=E3=83=AB=E8=A1=A8=E7=A4=BA?= =?UTF-8?q?=E3=81=AE=E3=83=AA=E3=83=B3=E3=82=AF=E3=81=8C=E9=81=95=E3=81=A3?= =?UTF-8?q?=E3=81=A6=E3=81=84=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Qall/QallControlPanel.vue | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/components/Main/Navigation/EphemeralNavigationContent/Qall/QallControlPanel.vue b/src/components/Main/Navigation/EphemeralNavigationContent/Qall/QallControlPanel.vue index 86fb44edb..807973eb9 100644 --- a/src/components/Main/Navigation/EphemeralNavigationContent/Qall/QallControlPanel.vue +++ b/src/components/Main/Navigation/EphemeralNavigationContent/Qall/QallControlPanel.vue @@ -63,11 +63,18 @@ export default defineComponent({ }, setup(props) { const styles = useStyles(props) - const { channelIdToShortPathString } = useChannelPath() + + const { + channelIdToShortPathString, + channelIdToPathString + } = useChannelPath() const channelName = computed(() => channelIdToShortPathString(props.channelId) ) - const channelLink = computed(() => constructChannelPath(channelName.value)) + const channelLink = computed(() => + constructChannelPath(channelIdToPathString(props.channelId)) + ) + const micIconName = computed(() => props.isMicMuted ? 'microphone-off' : 'microphone' )