Skip to content

Commit

Permalink
Fix step configuration in parameter-number.vue (#873)
Browse files Browse the repository at this point in the history
Signed-off-by: Anders Alfredsson <andersb86@gmail.com>
  • Loading branch information
pacive authored and ghys committed Apr 18, 2021
1 parent a71f6c1 commit f53918d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
:floating-label="$theme.md"
:min="(configDescription.options && configDescription.options.length) ? undefined : configDescription.min"
:max="(configDescription.options && configDescription.options.length) ? undefined : configDescription.max"
:step="configDescription.step || ((configDescription.type === 'DECIMAL') ? 0.01 : undefined)"
:step="configDescription.stepsize || ((configDescription.type === 'DECIMAL') ? 0.01 : undefined)"
:value="actualValue"
@input="updateValue"
:required="configDescription.required" validate validate-on-blur
Expand Down

0 comments on commit f53918d

Please sign in to comment.