1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-08 21:42:24 +03:00

don't hide timestamps

This commit is contained in:
Bruno Windels
2019-06-26 11:57:49 +02:00
parent fffdfde8ba
commit fe3be39fe7

View File

@@ -95,7 +95,7 @@ export default class MessageEditHistoryDialog extends React.Component {
stickyBottom={false}
startAtBottom={false}
>
<ul className="mx_MessageEditHistoryDialog_edits">{this._renderEdits()}</ul>
<ul className="mx_MessageEditHistoryDialog_edits mx_MessagePanel_alwaysShowTimestamps">{this._renderEdits()}</ul>
</ScrollPanel>);
}
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog');