Skip to content

Commit

Permalink
Qallの通話中チャンネル表示のリンクが違っていた
Browse files Browse the repository at this point in the history
  • Loading branch information
sapphi-red committed May 5, 2020
1 parent 43307f1 commit 4ea7d77
Showing 1 changed file with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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'
)
Expand Down

0 comments on commit 4ea7d77

Please sign in to comment.