Commit e5bab364 authored by 盖献康's avatar 盖献康

bug(66047)

parent d5a5f94e
...@@ -39,7 +39,7 @@ export default { ...@@ -39,7 +39,7 @@ export default {
const contentValidator = (rule, value, callback) => { const contentValidator = (rule, value, callback) => {
const contentValue = html2Text(value).replaceAll(' ', '') const contentValue = html2Text(value).replaceAll(' ', '')
if (contentValue.length === 0) { if (contentValue.length === 0) {
callback(new Error('请输入隐私政策')) callback(new Error('请输入用户协议'))
} else { } else {
callback() callback()
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment