diff --git a/src/Flows.js b/src/Flows.js
index e2b55eb..16340eb 100644
--- a/src/Flows.js
+++ b/src/Flows.js
@@ -353,7 +353,9 @@ class FlowItem extends PureComponent {
do_react && do_react(1)}
+ onClick={() =>
+ do_react && do_react(info.reaction_status === 1 ? 0 : 1)
+ }
>
);
- if (this.needFold || this.has_block_words) {
+ if (this.needFold || this.has_block_words || this.too_many_downvotes) {
return (
(!this.has_block_words || mode !== 'list') && (
- {this.needFold ? '已折叠' : '已屏蔽'}
+ {this.needFold && '已折叠'}
+ {this.has_block_words && '已屏蔽'}
+ {this.too_many_downvotes && '反对较多'}