1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2025-09-02 18:15:16 +02:00

Change wording in prefs based on setting

This commit is contained in:
binwiederhier 2023-06-10 20:51:24 -04:00
parent 9d5556c7f5
commit eb220544a3
2 changed files with 8 additions and 7 deletions
web/src/components

View file

@ -237,7 +237,7 @@ const DeleteAfter = () => {
const WebPushEnabled = () => {
const { t } = useTranslation();
const labelId = "prefWebPushEnabled";
const defaultEnabled = useLiveQuery(async () => prefs.webPushEnabled());
const enabled = useLiveQuery(async () => prefs.webPushEnabled());
const handleChange = async (ev) => {
await prefs.setWebPushEnabled(ev.target.value);
};
@ -247,9 +247,9 @@ const WebPushEnabled = () => {
}
return (
<Pref labelId={labelId} title={t("prefs_notifications_web_push_title")} description={t("prefs_notifications_web_push_description")}>
<Pref labelId={labelId} title={t("prefs_notifications_web_push_title")} description={enabled ? t("prefs_notifications_web_push_enabled_description") : t("prefs_notifications_web_push_disabled_description")}>
<FormControl fullWidth variant="standard" sx={{ m: 1 }}>
<Select value={defaultEnabled ?? false} onChange={handleChange} aria-labelledby={labelId}>
<Select value={enabled ?? false} onChange={handleChange} aria-labelledby={labelId}>
<MenuItem value>{t("prefs_notifications_web_push_enabled")}</MenuItem>
<MenuItem value={false}>{t("prefs_notifications_web_push_disabled")}</MenuItem>
</Select>