diff --git a/src/shared/components/moment-time.tsx b/src/shared/components/moment-time.tsx index e8338054..baa3c252 100644 --- a/src/shared/components/moment-time.tsx +++ b/src/shared/components/moment-time.tsx @@ -10,6 +10,7 @@ interface MomentTimeProps { updated?: string; }; showAgo?: boolean; + ignoreUpdated?: boolean; } export class MomentTime extends Component { @@ -22,7 +23,7 @@ export class MomentTime extends Component { } render() { - if (this.props.data.updated) { + if (!this.props.ignoreUpdated && this.props.data.updated) { return ( {
- {i18n.t('joined')} + {i18n.t('joined')}{' '} +