mirror of
https://github.com/orangecoding/fredy.git
synced 2026-06-16 12:31:07 +00:00
making sure scan interval does not go under 5
This commit is contained in:
@@ -121,11 +121,11 @@ const GeneralSettings = function GeneralSettings() {
|
|||||||
<div>
|
<div>
|
||||||
<SegmentPart
|
<SegmentPart
|
||||||
name="Interval"
|
name="Interval"
|
||||||
helpText="Interval in minutes for running queries against the configured services."
|
helpText="Interval in minutes for running queries against the configured services. Do NOT go under 5 minutes as with a lower interval, your instance might be detected as a bot."
|
||||||
Icon={IconRefresh}
|
Icon={IconRefresh}
|
||||||
>
|
>
|
||||||
<InputNumber
|
<InputNumber
|
||||||
min={0}
|
min={5}
|
||||||
max={1440}
|
max={1440}
|
||||||
placeholder="Interval in minutes"
|
placeholder="Interval in minutes"
|
||||||
value={interval}
|
value={interval}
|
||||||
|
|||||||
Reference in New Issue
Block a user