UI: Fix missaligned items in propagation

This commit is contained in:
Ilija Lazoroski 2022-07-04 13:47:57 +02:00
parent df7e43d796
commit 51609e9491
2 changed files with 30 additions and 1 deletions

View File

@ -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:{

View File

@ -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,