Skip to content

Commit

Permalink
remove mute functionality for now
Browse files Browse the repository at this point in the history
  • Loading branch information
leifriksheim committed Dec 14, 2023
1 parent 7e75034 commit ef2257c
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions app/src/views/community/community-sidebar/ChannelList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,6 @@
@click="() => navigateToChannel(channel.id)"
>
{{ channel.name }}
<j-icon
size="xs"
slot="end"
v-if="channel?.notifications?.mute"
name="bell-slash"
/>
<div
slot="end"
class="channel__notification"
Expand Down Expand Up @@ -73,21 +67,6 @@
<j-icon size="xs" slot="start" name="pencil" />
Edit Channel
</j-menu-item>
<j-menu-item
@click="
() =>
setChannelNotificationState({
channelId: channel.id,
})
"
>
<j-icon
size="xs"
slot="start"
:name="channel?.notifications?.mute ? 'bell-slash' : 'bell'"
/>
{{ `${channel?.notifications?.mute ? "Unmute" : "Mute"} Channel` }}
</j-menu-item>
<j-menu-item
v-if="isChannelCreator(channel.id)"
@click="() => deleteChannel(channel.id)"
Expand Down

0 comments on commit ef2257c

Please sign in to comment.