This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
OpenSource
/
dify
Watch
4
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
152
Wiki
Activity
Browse Source
Fix: agent app debug re-rendering issue (
#18389
)
tags/1.3.0
Kalo Chin
6 months ago
parent
93c1ee225e
commit
9a3acdcff8
No account linked to committer's email address
1 changed files
with
3 additions
and
1 deletions
Split View
Show Diff Stats
3
1
web/app/components/base/chat/chat/answer/index.tsx
+ 3
- 1
web/app/components/base/chat/chat/answer/index.tsx
View File
@@ -234,4 +234,6 @@ const Answer: FC<AnswerProps> = ({
)
}
export default memo(Answer)
export default memo(Answer, (prevProps, nextProps) =>
prevProps.responding === false && nextProps.responding === false,
)
Write
Preview
Loading…
Cancel
Save