Skip to content

Commit

Permalink
Fixed type of port configuration to avoid conflicts - fixes #377
Browse files Browse the repository at this point in the history
  • Loading branch information
klein0r committed Sep 23, 2024
1 parent 5c4d908 commit 60d6945
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down
5 changes: 4 additions & 1 deletion admin/jsonConfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@
"label": "host"
},
"port": {
"type": "port",
"type": "number",
"min": 1,
"max": 65535,
"step": 1,
"sm": 2,
"md": 4,
"lg": 4,
Expand Down

0 comments on commit 60d6945

Please sign in to comment.