Rate limit allow_last_scanned

This commit is contained in:
2021-11-28 21:43:24 +00:00
parent 822cb9ec5c
commit 07559714ff
2 changed files with 22 additions and 2 deletions

View File

@@ -266,11 +266,16 @@ export function AccountForm(props) {
<Form.Field>
<label>Participate in "Last Scanned" member list?</label>
<Checkbox
<Form.Checkbox
label='Yes, show me'
name='allow_last_scanned'
onChange={handleCheck}
checked={input.allow_last_scanned}
error={error.allow_last_scanned ?
{ content: error.allow_last_scanned, pointing: 'left' }
:
false
}
/>
</Form.Field>