浏览代码

fix iAmSmart address concat bug

master
Anna Ho 1年前
父节点
当前提交
3e80ee814f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/pages/authentication/auth-forms/IAmSmartFormWizard.js

+ 1
- 1
src/pages/authentication/auth-forms/IAmSmartFormWizard.js 查看文件

@@ -142,7 +142,7 @@ const CustomFormWizard = (props) => {
const getAddressStr = (strs) => {
let add = ""
strs.forEach(str => {
add += str ? str + ", " : "";
add += str.trim() ? str.trim() + ", " : "";
});
add = add.trim();
if (add.slice(- 1) == ",") {


正在加载...
取消
保存