Skip to content

Commit

Permalink
fix(config): correct max. value of SKU parameters for Kwikset locks (#…
Browse files Browse the repository at this point in the history
…7178)

Co-authored-by: Dominic Griesel <[email protected]>
  • Loading branch information
ccutrer and AlCalzone authored Oct 7, 2024
1 parent ac83fb3 commit f4dcda4
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,17 +227,19 @@
"label": "SKU Number (First 4 Bytes)",
"valueSize": 4,
"minValue": 0,
"maxValue": 0,
"maxValue": 4294967295,
"defaultValue": 0,
"unsigned": true
"unsigned": true,
"readOnly": true
},
"dipswitch_sku_lastfour": {
"label": "SKU Number (Last 4 Bytes)",
"valueSize": 4,
"minValue": 0,
"maxValue": 0,
"maxValue": 4294967295,
"defaultValue": 0,
"unsigned": true
"unsigned": true,
"readOnly": true
},
"reset": {
"label": "Reset to Default",
Expand Down

0 comments on commit f4dcda4

Please sign in to comment.