Merge pull request #130 from cake-tech/CAKE-136-user-can't-add-node-address-with-dash

CAKE-136 | added "-" symbol to node_address_validator.dart; changed m…
wownero
M 4 years ago
commit 827cda617b

@ -6,5 +6,5 @@ class NodeAddressValidator extends TextValidator {
: super(
errorMessage: S.current.error_text_node_address,
pattern:
'^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\$|^[0-9a-zA-Z.]+\$');
'^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\$|^[0-9a-zA-Z.\-]+\$');
}

@ -6,7 +6,7 @@ class NodePortValidator extends TextValidator {
NodePortValidator()
: super(
errorMessage: S.current.error_text_node_port,
minLength: 1,
minLength: 0,
maxLength: 5,
pattern: '^[0-9]');
}

Loading…
Cancel
Save