Replace provider/author fallback with published date

This commit is contained in:
Lim Chee Aun 2023-11-04 15:36:13 +08:00
parent 7ad6151637
commit 5f50df1721

View file

@ -1762,7 +1762,10 @@ function Card({ card, instance }) {
{title}
</p>
<p class="meta" dir="auto">
{description || providerName || authorName}
{description ||
(!!publishedAt && (
<RelativeTime datetime={publishedAt} format="micro" />
))}
</p>
</div>
</a>