diff --git a/src/Flows.js b/src/Flows.js index ab7b601e..5004f481 100644 --- a/src/Flows.js +++ b/src/Flows.js @@ -1083,7 +1083,8 @@ class FlowItemRow extends PureComponent { } render() { - const { show_sidebar, token, search_param, is_quote, mode } = this.props; + const { show_sidebar, token, search_param, is_quote, mode, submode } = + this.props; let show_pid = load_single_meta(show_sidebar, token, [this.state.info.pid]); let hl_rules = [['pid', PID_RE]]; @@ -1108,6 +1109,11 @@ class FlowItemRow extends PureComponent { } } + let replies_to_show = this.state.replies.slice(0, PREVIEW_REPLY_COUNT); + if (mode === 'list' && submode === 1) { + replies_to_show.reverse(); + } + let res = (