From 46d7cba1ea95faeb8e11cb06e8e14855e037f477 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Tue, 30 Jan 2024 22:46:18 +0800 Subject: [PATCH] Show join date if there's nothing to show --- src/components/account-block.jsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/components/account-block.jsx b/src/components/account-block.jsx index 4cce3422..98252722 100644 --- a/src/components/account-block.jsx +++ b/src/components/account-block.jsx @@ -61,6 +61,7 @@ function AccountBlock({ note, group, followersCount, + createdAt, } = account; let [_, acct1, acct2] = acct.match(/([^@]+)(@.+)/i) || [, acct]; if (accountInstance) { @@ -188,6 +189,21 @@ function AccountBlock({ /> )} + {!bot && + !group && + !hasRelationship && + !followersCount && + !verifiedField && + !!createdAt && ( + + Joined{' '} + + + )} )}