From 45ffc3385d6504556273f457f0a951341fb38148 Mon Sep 17 00:00:00 2001 From: AlphaX-Projects <77661270+AlphaX-Projects@users.noreply.github.com> Date: Sat, 3 Dec 2022 18:24:27 +0100 Subject: [PATCH] fix for 2 digits on port --- qortal-ui-core/src/functional-components/settings-page.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qortal-ui-core/src/functional-components/settings-page.js b/qortal-ui-core/src/functional-components/settings-page.js index 2540f5d7..253b2cd7 100644 --- a/qortal-ui-core/src/functional-components/settings-page.js +++ b/qortal-ui-core/src/functional-components/settings-page.js @@ -251,7 +251,7 @@ class SettingsPage extends connect(store)(LitElement) { const domainInput = this.shadowRoot.getElementById('domainInput').value const portInput = this.shadowRoot.getElementById('portInput').value - if (protocolList.length >= 4 && domainInput.length >= 3 && portInput.length >= 4) { + if (protocolList.length >= 4 && domainInput.length >= 3 && portInput.length >= 2) { const nodeObject = { name: nameInput, protocol: protocolList,