修正单词拼写错误

This commit is contained in:
RuoYi
2021-12-29 15:53:30 +08:00
parent 3d7b36932e
commit bb3f449388
2 changed files with 3 additions and 3 deletions

View File

@ -110,7 +110,7 @@ export function sprintf(str) {
}
// 转换字符串undefined,null等转化为""
export function praseStrEmpty(str) {
export function parseStrEmpty(str) {
if (!str || str == "undefined" || str == "null") {
return "";
}