Skip to content

Commit

Permalink
Fix step configuration in parameter-number.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
pacive committed Feb 4, 2021
1 parent 4271845 commit bf363ba
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 bf363ba

Please sign in to comment.