ant-design / pro-chat

🤖 Components Library for Quickly Building LLM Chat Interfaces.
https://pro-chat.antdigital.dev
MIT License
667 stars 83 forks source link

🐛[BUG] itemShouldUpdate返回true后 未调用contentrender #276

Open PeiJM opened 2 months ago

PeiJM commented 2 months ago

🐛 bug 描述

itemShouldUpdate返回true后 未调用contentrender

把contentrender注释掉 使用render 是正常的

版本:1.13.8

ONLY-yours commented 1 month ago

原因定位到,就算返回了 true,我们也有一层 Memo

如果这些数据和状态不发生变化,我们也不会走 contentRender,render 的话则都会走一遍,算是一个设计

image