You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-16 22:01:54 +03:00
pass user settings from above
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
@ -184,6 +184,9 @@ var TimelinePanel = React.createClass({
|
||||
|
||||
// hide redacted events as per old behaviour
|
||||
hideRedactions: syncedSettings.hideRedactions,
|
||||
|
||||
// hide membership joins and leaves
|
||||
hideJoinLeaves: syncedSettings.hideJoinLeaves,
|
||||
};
|
||||
},
|
||||
|
||||
@ -1122,6 +1125,7 @@ var TimelinePanel = React.createClass({
|
||||
return (
|
||||
<MessagePanel ref="messagePanel"
|
||||
hidden={ this.props.hidden }
|
||||
hideJoinLeaves={ this.state.hideJoinLeaves }
|
||||
hideRedactions={ this.state.hideRedactions }
|
||||
backPaginating={ this.state.backPaginating }
|
||||
forwardPaginating={ forwardPaginating }
|
||||
|
Reference in New Issue
Block a user