From 60d6945a4850b0cf262768c570edbd6947e826aa Mon Sep 17 00:00:00 2001 From: Matthias Kleine Date: Mon, 23 Sep 2024 11:00:50 +0200 Subject: [PATCH] Fixed type of port configuration to avoid conflicts - fixes #377 --- README.md | 1 + admin/jsonConfig.json | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8d459b7..4697bb3 100755 --- a/README.md +++ b/README.md @@ -89,6 +89,7 @@ default: state-ID converted to a mqtt topic. ## Changelog ### __WORK IN PROGRESS__ * (@klein0r) Added missing information in configuration dialog +* (@klein0r) Fixed type of port configuration to avoid conflicts ### 2.0.0 (2024-06-21) * (klein0r) Password is now encrypted - you have to re-renter your password in instance settings! diff --git a/admin/jsonConfig.json b/admin/jsonConfig.json index 854fcf2..1ebd0f7 100644 --- a/admin/jsonConfig.json +++ b/admin/jsonConfig.json @@ -17,7 +17,10 @@ "label": "host" }, "port": { - "type": "port", + "type": "number", + "min": 1, + "max": 65535, + "step": 1, "sm": 2, "md": 4, "lg": 4,