mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
fix: required default false
--bug=1050885 --user=刘瑞斌 【应用编排】添加用户输入参数,直接触发默认值必填校验 https://www.tapd.cn/57709429/s/1638132
This commit is contained in:
parent
d39d4804a3
commit
2fd1464ccb
|
|
@ -110,7 +110,7 @@ const currentRow = computed(() => {
|
|||
return currentItem.value
|
||||
}
|
||||
} else {
|
||||
return { input_type: 'TextInput', required: true, attrs: { maxlength: 20, minlength: 0 } }
|
||||
return { input_type: 'TextInput', required: false, attrs: { maxlength: 20, minlength: 0 } }
|
||||
}
|
||||
})
|
||||
const currentIndex = ref(null)
|
||||
|
|
|
|||
Loading…
Reference in New Issue