fix 12/24h in Reply/ReplyPreview

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2018-02-16 21:14:03 +00:00
parent cb293a852d
commit f1a3592eff
No known key found for this signature in database
GPG key ID: 3F879DA5AD802A5E
2 changed files with 10 additions and 2 deletions

View file

@ -197,7 +197,10 @@ export default class Reply extends React.Component {
return <blockquote className="mx_Reply" key={ev.getId()}>
{ dateSep }
<EventTile mxEvent={ev} tileShape="reply" onWidgetLoad={this.props.onWidgetLoad} />
<EventTile mxEvent={ev}
tileShape="reply"
onWidgetLoad={this.props.onWidgetLoad}
isTwelveHour={SettingsStore.getValue("showTwelveHourTimestamps")} />
</blockquote>;
});