Show join date if there's nothing to show
This commit is contained in:
parent
ff35c458c3
commit
46d7cba1ea
1 changed files with 16 additions and 0 deletions
|
@ -61,6 +61,7 @@ function AccountBlock({
|
||||||
note,
|
note,
|
||||||
group,
|
group,
|
||||||
followersCount,
|
followersCount,
|
||||||
|
createdAt,
|
||||||
} = account;
|
} = account;
|
||||||
let [_, acct1, acct2] = acct.match(/([^@]+)(@.+)/i) || [, acct];
|
let [_, acct1, acct2] = acct.match(/([^@]+)(@.+)/i) || [, acct];
|
||||||
if (accountInstance) {
|
if (accountInstance) {
|
||||||
|
@ -188,6 +189,21 @@ function AccountBlock({
|
||||||
/>
|
/>
|
||||||
</span>
|
</span>
|
||||||
)}
|
)}
|
||||||
|
{!bot &&
|
||||||
|
!group &&
|
||||||
|
!hasRelationship &&
|
||||||
|
!followersCount &&
|
||||||
|
!verifiedField &&
|
||||||
|
!!createdAt && (
|
||||||
|
<span class="created-at">
|
||||||
|
Joined{' '}
|
||||||
|
<time datetime={createdAt}>
|
||||||
|
{niceDateTime(createdAt, {
|
||||||
|
hideTime: true,
|
||||||
|
})}
|
||||||
|
</time>
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</span>
|
</span>
|
||||||
|
|
Loading…
Add table
Reference in a new issue