|
@@ -91,7 +91,7 @@ const BasicInfoSettings = (props: Props) => {
|
|
|
id="radioEmailShow"
|
|
id="radioEmailShow"
|
|
|
className="custom-control-input"
|
|
className="custom-control-input"
|
|
|
name="userForm[isEmailPublished]"
|
|
name="userForm[isEmailPublished]"
|
|
|
- checked={personalSettingsInfo?.isEmailPublished || true}
|
|
|
|
|
|
|
+ checked={personalSettingsInfo?.isEmailPublished}
|
|
|
onChange={() => changePersonalSettingsHandler({ isEmailPublished: true })}
|
|
onChange={() => changePersonalSettingsHandler({ isEmailPublished: true })}
|
|
|
/>
|
|
/>
|
|
|
<label className="custom-control-label" htmlFor="radioEmailShow">{t('Show')}</label>
|
|
<label className="custom-control-label" htmlFor="radioEmailShow">{t('Show')}</label>
|
|
@@ -102,7 +102,7 @@ const BasicInfoSettings = (props: Props) => {
|
|
|
id="radioEmailHide"
|
|
id="radioEmailHide"
|
|
|
className="custom-control-input"
|
|
className="custom-control-input"
|
|
|
name="userForm[isEmailPublished]"
|
|
name="userForm[isEmailPublished]"
|
|
|
- checked={!personalSettingsInfo?.isEmailPublished || false}
|
|
|
|
|
|
|
+ checked={!personalSettingsInfo?.isEmailPublished}
|
|
|
onChange={() => changePersonalSettingsHandler({ isEmailPublished: false })}
|
|
onChange={() => changePersonalSettingsHandler({ isEmailPublished: false })}
|
|
|
/>
|
|
/>
|
|
|
<label className="custom-control-label" htmlFor="radioEmailHide">{t('Hide')}</label>
|
|
<label className="custom-control-label" htmlFor="radioEmailHide">{t('Hide')}</label>
|