Fix formatting

This commit is contained in:
Steve Richter
2020-11-19 23:22:18 -05:00
committed by Deluan Quintão
parent 2397a7e464
commit 14525cd056
4 changed files with 17 additions and 11 deletions
+7 -7
View File
@@ -13,10 +13,7 @@ import {
} from 'react-admin'
import { makeStyles } from '@material-ui/core/styles'
import HelpOutlineIcon from '@material-ui/icons/HelpOutline'
import {
changeTheme,
setNotificationsState,
} from '../actions'
import { changeTheme, setNotificationsState } from '../actions'
import themes from '../themes'
import { docsUrl } from '../utils'
import { useGetLanguageChoices } from '../i18n'
@@ -130,7 +127,7 @@ const NotificationsToggle = (props) => {
const notify = useNotify()
const currentSetting = useSelector((state) => state.settings.notifications)
const current = (() => {
if (!("Notification" in window) || Notification.permission !== 'granted') {
if (!('Notification' in window) || Notification.permission !== 'granted') {
return false
}
return currentSetting
@@ -139,12 +136,15 @@ const NotificationsToggle = (props) => {
return (
<BooleanInput
{...props}
source='notifications'
source="notifications"
label={translate('menu.personal.options.desktop_notifications')}
defaultValue={current}
onChange={async (notificationsEnabled) => {
if (notificationsEnabled) {
if (!('Notification' in window) || Notification.permission === 'denied') {
if (
!('Notification' in window) ||
Notification.permission === 'denied'
) {
notify(translate('message.notifications_blocked'), 'warning')
notificationsEnabled = false
} else {