Skip to content

Commit 60a348a

Browse files
committed
fix: enhance validation for required form fields
--bug=1052705 --user=刘瑞斌 【工作流】添加”开关”按钮参数, 默认值为关闭,保存之后页面还会提示“请填写所填字段” https://www.tapd.cn/57709429/s/1675323
1 parent 98ef6e5 commit 60a348a

File tree

1 file changed

+3
-1
lines changed
  • ui/src/components/ai-chat/component/user-form

1 file changed

+3
-1
lines changed

ui/src/components/ai-chat/component/user-form/index.vue

+3-1
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,9 @@ const checkInputParam = () => {
303303
for (let i = 0; i < inputFieldList.value.length; i++) {
304304
if (
305305
inputFieldList.value[i].required &&
306-
!form_data_context.value[inputFieldList.value[i].field]
306+
(form_data_context.value[inputFieldList.value[i].field] === null ||
307+
form_data_context.value[inputFieldList.value[i].field] === undefined ||
308+
form_data_context.value[inputFieldList.value[i].field] === '')
307309
) {
308310
MsgWarning(t('chat.tip.requiredMessage'))
309311
return false

0 commit comments

Comments
 (0)