创建发行版-输入标签报错

This commit is contained in:
caishi 2024-04-16 11:53:24 +08:00
parent c597d8ee91
commit b410e10e5e
2 changed files with 711 additions and 696 deletions

1405
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -124,7 +124,7 @@ export default Form.create()(
}
//
function changeAuto(value){
let l = tagList.filter(item=>item.name.indexOf(value) > -1);
let l = tagList && tagList.length > 0 ? tagList.filter(item=>item.name.indexOf(value) > -1) :[];
setOptions(renderTagList(l));
}