SettingsStore: add advanced quickfilter toggle

This commit is contained in:
Alex Gleason 2022-07-11 12:09:52 -05:00
parent c8004a7532
commit 641c87866e
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -102,6 +102,10 @@ const SettingsStore: React.FC = () => {
</CardHeader>
<List>
<ListItem label={<FormattedMessage id='preferences.notifications.advanced' defaultMessage='Show all notification categories' />}>
<SettingToggle settings={settings} settingPath={['notifications', 'quickFilter', 'advanced']} onChange={onToggleChange} />
</ListItem>
<ListItem label={<FormattedMessage id='preferences.fields.unfollow_modal_label' defaultMessage='Show confirmation dialog before unfollowing someone' />}>
<SettingToggle settings={settings} settingPath={['unfollowModal']} onChange={onToggleChange} />
</ListItem>