forked from p15670423/monkey
UI: Hide description that messed up the list
This commit is contained in:
parent
dd390ff41d
commit
8e9f5647f6
|
@ -5,6 +5,12 @@ file.
|
||||||
The format is based on [Keep a
|
The format is based on [Keep a
|
||||||
Changelog](https://keepachangelog.com/en/1.0.0/).
|
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
|
## [1.11.0] - 2021-08-13
|
||||||
### Added
|
### Added
|
||||||
- A runtime-configurable option to specify a data directory where runtime
|
- A runtime-configurable option to specify a data directory where runtime
|
||||||
|
|
|
@ -13,6 +13,18 @@ export default function UiSchema(props) {
|
||||||
classNames: 'config-template-no-header',
|
classNames: 'config-template-no-header',
|
||||||
'ui:widget': AdvancedMultiSelect
|
'ui:widget': AdvancedMultiSelect
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
credentials: {
|
||||||
|
exploit_user_list: {
|
||||||
|
items: {
|
||||||
|
classNames: 'config-template-no-header'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
exploit_password_list: {
|
||||||
|
items: {
|
||||||
|
classNames: 'config-template-no-header'
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
basic_network: {
|
basic_network: {
|
||||||
|
@ -21,8 +33,23 @@ export default function UiSchema(props) {
|
||||||
info_box: {
|
info_box: {
|
||||||
'ui:field': InfoBox
|
'ui:field': InfoBox
|
||||||
},
|
},
|
||||||
|
blocked_ips: {
|
||||||
|
items: {
|
||||||
|
classNames: 'config-template-no-header'
|
||||||
|
}
|
||||||
|
},
|
||||||
subnet_scan_list: {
|
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'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue