kubesphere / kubesphere/ks-devops
After unsetting the input parameters, the page does not refresh automatically
- Dominant language
- Go
- Stars
- 164
- Forks
- 140
- PR merge metrics
- No merged PRs in 30d
Description
**Versions used**
KubeSphere: `v3.2.1-rc.2`
How To Reproduce
Steps to reproduce the behavior:
1、create pipeline use the following jenkinsfile
```
pipeline {
agent any
stages {
stage('Example') {
input {
message "Should we continue?"
ok "Yes, we should."
submitter "alice,bob"
parameters {
string(name: 'PERSON', defaultValue: 'Mr Jenkins', description: 'Who should I say hello to?')
}
}
steps {
echo "Hello, ${PERSON}, nice to meet you."
}
}
}
}
```
2、run pipeline
3、Click 'Yes, we should' in record detail page
4、Click on 'cancel'

/kind bug
/cc @kubesphere/sig-console
/priority medium
Contributor guide
Assessment
This issue has not been assessed yet.