942e6 fix scale input decimal value (#444)
* fix password reset bug * fix default integer value on scale input
This commit is contained in:
@@ -329,8 +329,8 @@ export default {
|
||||
} else if (field.type === 'rating') {
|
||||
inputProperties.numberOfStars = parseInt(field.rating_max_value) ?? 5
|
||||
} else if (field.type === 'scale') {
|
||||
inputProperties.minScale = parseInt(field.scale_min_value) ?? 1
|
||||
inputProperties.maxScale = parseInt(field.scale_max_value) ?? 5
|
||||
inputProperties.minScale = parseFloat(field.scale_min_value) ?? 1
|
||||
inputProperties.maxScale = parseFloat(field.scale_max_value) ?? 5
|
||||
inputProperties.stepScale = parseFloat(field.scale_step_value) ?? 1
|
||||
} else if (field.type === 'slider') {
|
||||
inputProperties.minSlider = parseInt(field.slider_min_value) ?? 0
|
||||
|
||||
Reference in New Issue
Block a user