mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-01-22 16:46:28 +01:00
Replace provider/author fallback with published date
This commit is contained in:
parent
7ad6151637
commit
5f50df1721
1 changed files with 4 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue