AIRAVATA-3654 Parse input value as a float instead of as an int

Fixes bug where default float value was getting floored to an integer.
diff --git a/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/experiment/input-editors/SliderInputEditor.vue b/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/experiment/input-editors/SliderInputEditor.vue
index 6824ad3..72ca46f 100644
--- a/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/experiment/input-editors/SliderInputEditor.vue
+++ b/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/experiment/input-editors/SliderInputEditor.vue
@@ -84,7 +84,7 @@
     },
     parseValue(value) {
       // Just remove any percentage signs
-      const result = value ? parseInt(value.replaceAll("%", "")) : NaN;
+      const result = value ? parseFloat(value.replaceAll("%", "")) : NaN;
       return !isNaN(result) ? result : this.sliderMin;
     },
     onChange(value) {