mirror of
https://github.com/anyproto/anytype-ts.git
synced 2025-06-08 05:57:02 +09:00
JS-7088: fix
This commit is contained in:
parent
d595334cd4
commit
89711246e3
1 changed files with 3 additions and 2 deletions
|
@ -45,6 +45,7 @@ const HistoryRight = observer(class HistoryRight extends React.Component<Props,
|
|||
|
||||
render () {
|
||||
const { isPopup } = this.props;
|
||||
const { timeFormat } = S.Common;
|
||||
const groups = this.groupData();
|
||||
const year = U.Date.date('Y', U.Date.now());
|
||||
const canWrite = U.Space.canMyParticipantWrite();
|
||||
|
@ -106,7 +107,7 @@ const HistoryRight = observer(class HistoryRight extends React.Component<Props,
|
|||
<div id={`item-${item.id}`} className="child">
|
||||
<div className="info" onClick={e => this.loadVersion(item.id)}>
|
||||
{icon}
|
||||
<div className="date">{U.Date.date('g:i A', item.time)}</div>
|
||||
<div className="date">{U.Date.timeWithFormat(timeFormat, item.time)}</div>
|
||||
</div>
|
||||
|
||||
{withChildren ? (
|
||||
|
@ -128,7 +129,7 @@ const HistoryRight = observer(class HistoryRight extends React.Component<Props,
|
|||
className="item"
|
||||
>
|
||||
<div className="info" onClick={e => this.loadVersion(item.id)}>
|
||||
<div className="date">{U.Date.date('g:i A', item.time)}</div>
|
||||
<div className="date">{U.Date.timeWithFormat(timeFormat, item.time)}</div>
|
||||
|
||||
{author ? (
|
||||
<div className="author">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue