Skip to content
Snippets Groups Projects
Verified Commit 3e85919a authored by Daniel Göbel's avatar Daniel Göbel
Browse files

Set step size for integer parameter input to 0.01

#66
parent e2888535
No related branches found
No related tags found
2 merge requests!84Remove development branch,!61Resolve "Set step size for Integer parameter input"
This commit is part of merge request !61. Comments created here will be created in the context of that merge request.
...@@ -32,7 +32,7 @@ build: ...@@ -32,7 +32,7 @@ build:
build-publish-dev-docker-container-job: build-publish-dev-docker-container-job:
stage: deploy stage: deploy
image: image:
name: gcr.io/kaniko-project/executor:v1.9.1-debug name: gcr.io/kaniko-project/executor:v1.16.0-debug
entrypoint: [""] entrypoint: [""]
only: only:
refs: refs:
...@@ -49,7 +49,7 @@ build-publish-dev-docker-container-job: ...@@ -49,7 +49,7 @@ build-publish-dev-docker-container-job:
build-publish-docker-container-job: build-publish-docker-container-job:
stage: deploy stage: deploy
image: image:
name: gcr.io/kaniko-project/executor:v1.9.1-debug name: gcr.io/kaniko-project/executor:v1.16.0-debug
entrypoint: [""] entrypoint: [""]
only: only:
- tags - tags
......
...@@ -39,7 +39,7 @@ function updateValue() { ...@@ -39,7 +39,7 @@ function updateValue() {
ref="numberInput" ref="numberInput"
:max="props.parameter['maximum']" :max="props.parameter['maximum']"
:min="props.parameter['minimum']" :min="props.parameter['minimum']"
step="1" step="0.01"
:value="props.modelValue" :value="props.modelValue"
:required="props.required" :required="props.required"
:aria-describedby="props.helpId" :aria-describedby="props.helpId"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment