forked from abner/for-legacy-web
fix(sidebar): handle channel as muted if 'none'
parent
3d5df68771
commit
20590641bc
|
|
@ -95,7 +95,7 @@ const ServerSidebar = observer((props: Props) => {
|
|||
if (!entry) return;
|
||||
|
||||
const active = channel?._id === entry._id;
|
||||
const muted = props.notifications[id] === "muted";
|
||||
const muted = props.notifications[id] === "none";
|
||||
|
||||
return (
|
||||
<ConditionalLink
|
||||
|
|
|
|||
Loading…
Reference in New Issue