UI: Change minimum value of maximum_depth to 0 in the propagation schema

This commit is contained in:
Shreya Malviya 2022-07-27 18:44:57 +05:30
parent 6da238fe1d
commit a89741190f
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ const PROPAGATION_CONFIGURATION_SCHEMA = {
'maximum_depth': {
'title': 'Maximum scan depth',
'type': 'integer',
'minimum': 1,
'minimum': 0,
'default': 2,
'description': 'Amount of hops allowed for the monkey to spread from the ' +
'Island server. \n' +