tank-front icon indicating copy to clipboard operation
tank-front copied to clipboard

上传时UI出现冻结现象

Open shih6 opened this issue 1 year ago • 0 comments

上传多个文件时
在某些情况下会导致进度条处于冻结状态
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

shih6 avatar Oct 27 '23 03:10 shih6