diff options
Diffstat (limited to 'src/modules/popdowns/notifications.tsx')
| -rw-r--r-- | src/modules/popdowns/notifications.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/popdowns/notifications.tsx b/src/modules/popdowns/notifications.tsx index bb08c13..4ab0095 100644 --- a/src/modules/popdowns/notifications.tsx +++ b/src/modules/popdowns/notifications.tsx @@ -51,7 +51,7 @@ export default () => ( { label: "Silence", onClicked: () => (AstalNotifd.get_default().dontDisturb = !AstalNotifd.get_default().dontDisturb), - className: bind(AstalNotifd.get_default(), "dontDisturb").as(d => (d ? "enabled" : "")), + enabled: bind(AstalNotifd.get_default(), "dontDisturb"), }, { label: "Clear", |