tank-front
tank-front copied to clipboard
上传时UI出现冻结现象
上传多个文件时
在某些情况下会导致进度条处于冻结状态
src\pages\matter\List.tsx-794
this.uploadMattersMap[this.getSpaceUuid()]?.map((m) => (
<UploadMatterPanel matter={m} />
))
src\pages\matter\widget\UploadMatterPanel.tsx-33
componentWillUnmount() {
this.props.matter.reactComponent = null;
}
未设置key导致列表中的组件全部卸载了一遍
导致reactComponent为null,updateUI函数失效
已提交PR