fix(测试跟踪): 自定义字段是多选类型,导入时字段格式输入错误,提示需优化

【【测试跟踪】自定义字段是多选类型,导入时字段格式输入错误,提示需优化】https://www.tapd.cn/55049933/bugtrace/bugs/view?bug_id=1155049933001016133
This commit is contained in:
zhangyong 2022-08-23 15:57:16 +08:00 committed by zhangyongfit2cloud
parent 6136abc07b
commit 2af96c5948
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ public abstract class AbstractCustomFieldValidator {
}
return JSONArray.parseArray(value, String.class);
} catch (Exception e) {
CustomFieldValidateException.throwException(String.format(Translator.get("custom_field_required_tip"), name));
CustomFieldValidateException.throwException(String.format(Translator.get("custom_field_array_tip"), name));
}
return new ArrayList<>();
}