UI: Fix missaligned items in propagation
This commit is contained in:
parent
df7e43d796
commit
51609e9491
|
@ -19,12 +19,41 @@ export default function UiSchema(props) {
|
|||
vulnerability_classes: {
|
||||
classNames: 'config-template-no-header'
|
||||
}
|
||||
},
|
||||
options: {
|
||||
http_ports: {
|
||||
items: {
|
||||
classNames: 'config-template-no-header'
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
network_scan: {
|
||||
targets: {
|
||||
info_box: {
|
||||
'ui:field': InfoBox
|
||||
},
|
||||
blocked_ips: {
|
||||
items: {
|
||||
classNames: 'config-template-no-header'
|
||||
}
|
||||
},
|
||||
inaccessible_subnets: {
|
||||
items: {
|
||||
classNames: 'config-template-no-header'
|
||||
}
|
||||
},
|
||||
subnets: {
|
||||
items: {
|
||||
classNames: 'config-template-no-header'
|
||||
}
|
||||
}
|
||||
},
|
||||
tcp: {
|
||||
ports: {
|
||||
items: {
|
||||
classNames: 'config-template-no-header'
|
||||
}
|
||||
}
|
||||
},
|
||||
fingerprinters:{
|
||||
|
|
|
@ -17,7 +17,7 @@ export const scanTargetConfigurationSchema = {
|
|||
'default': [],
|
||||
'description': 'List of IPs that the monkey will not scan.'
|
||||
},
|
||||
'inaccessible_sbunets': {
|
||||
'inaccessible_subnets': {
|
||||
'title': 'Network segmentation testing',
|
||||
'type': 'array',
|
||||
'uniqueItems': true,
|
||||
|
|
Loading…
Reference in New Issue