mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-02 06:06:41 +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}
|
{title}
|
||||||
</p>
|
</p>
|
||||||
<p class="meta" dir="auto">
|
<p class="meta" dir="auto">
|
||||||
{description || providerName || authorName}
|
{description ||
|
||||||
|
(!!publishedAt && (
|
||||||
|
<RelativeTime datetime={publishedAt} format="micro" />
|
||||||
|
))}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
|
|
Loading…
Reference in a new issue