942e6 fix scale input decimal value (#444)

* fix password reset bug

* fix default integer value on scale input
This commit is contained in:
Favour Olayinka
2024-06-10 12:23:18 +01:00
committed by GitHub
parent b0bad02b66
commit 1875faa123
2 changed files with 12 additions and 3 deletions

View File

@@ -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