UI: Remove float format from schema

There is no such format and ui throws warnings
This commit is contained in:
vakarisz 2022-07-14 17:20:26 +03:00
parent 1445bcf4ad
commit 138a065d75
3 changed files with 0 additions and 3 deletions

View File

@ -33,7 +33,6 @@ export const SCHEMA = {
'properties':{
'keep_tunnel_open_time': {
'title': 'Keep tunnel open time',
'format': 'float',
'type': 'number',
'default': 30,
'description': 'Time to keep tunnel open before going down after last exploit (in seconds)'

View File

@ -3,7 +3,6 @@ const ICMP_SCAN_CONFIGURATION_SCHEMA = {
'type': 'object',
'properties': {
'timeout': {
'format': 'float',
'title': 'Ping scan timeout',
'type': 'number',
'description': 'Maximum time to wait for ping response'

View File

@ -13,7 +13,6 @@ const TCP_SCAN_CONFIGURATION_SCHEMA = {
},
'timeout': {
'title': 'TCP scan timeout',
'format': 'float',
'type': 'number',
'description': 'Maximum time to wait for TCP response.'
}