Skip to content

Commit

Permalink
bug: OPC.slider was missing .step variable setting
Browse files Browse the repository at this point in the history
  • Loading branch information
msawired committed Oct 2, 2023
1 parent 988d9c9 commit f4f0fb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opc.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class OPC {
value = variableNameOrConfig.value;
min = variableNameOrConfig.min ?? min;
max = variableNameOrConfig.max ?? max;
step = variableNameOrConfig ?? step;
step = variableNameOrConfig.step ?? step;
label = variableNameOrConfig.label;
description = variableNameOrConfig.description;
} else {
Expand Down

0 comments on commit f4f0fb4

Please sign in to comment.