UI: Hide description that messed up the list

This commit is contained in:
Ilija Lazoroski 2021-08-05 13:29:08 +02:00 committed by Mike Salvatore
parent dd390ff41d
commit 8e9f5647f6
2 changed files with 34 additions and 1 deletions

View File

@ -5,6 +5,12 @@ file.
The format is based on [Keep a
Changelog](https://keepachangelog.com/en/1.0.0/).
## [Unreleased]
### Fixed
- Misaligned buttons and input fields on exploiter and network configuration
pages. #1353
## [1.11.0] - 2021-08-13
### Added
- A runtime-configurable option to specify a data directory where runtime

View File

@ -13,6 +13,18 @@ export default function UiSchema(props) {
classNames: 'config-template-no-header',
'ui:widget': AdvancedMultiSelect
}
},
credentials: {
exploit_user_list: {
items: {
classNames: 'config-template-no-header'
}
},
exploit_password_list: {
items: {
classNames: 'config-template-no-header'
}
}
}
},
basic_network: {
@ -21,8 +33,23 @@ export default function UiSchema(props) {
info_box: {
'ui:field': InfoBox
},
blocked_ips: {
items: {
classNames: 'config-template-no-header'
}
},
subnet_scan_list: {
format: 'ip-list'
format: 'ip-list',
items: {
classNames: 'config-template-no-header'
}
}
},
network_analysis: {
inaccessible_subnets: {
items: {
classNames: 'config-template-no-header'
}
}
}
},