Skip to content

Commit

Permalink
Repair objMax unequal null
Browse files Browse the repository at this point in the history
  • Loading branch information
mattreim committed Nov 20, 2024
1 parent 22adeb3 commit 851f088
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -3316,7 +3316,7 @@ async function SetObjectAndState(id, name, type, stateName, value) {
if (objMin !== null) {
objCommon.min = objMin;
}
if (objMin !== null) {
if (objMax !== null) {
objCommon.max = objMax;
}
if (objDefault !== null) {
Expand Down

0 comments on commit 851f088

Please sign in to comment.