mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-22 09:15:33 +03:00
Merge pull request #461 from Vinnl/ellipsis-tooltip
Add tooltip for truncated preview text
This commit is contained in:
commit
d1965a84b5
1 changed files with 4 additions and 4 deletions
|
@ -2232,10 +2232,10 @@ function Card({ card, selfReferential, instance }) {
|
|||
<p class="meta domain" dir="auto">
|
||||
{domain}
|
||||
</p>
|
||||
<p class="title" dir="auto">
|
||||
<p class="title" dir="auto" title={title}>
|
||||
{title}
|
||||
</p>
|
||||
<p class="meta" dir="auto">
|
||||
<p class="meta" dir="auto" title={description}>
|
||||
{description ||
|
||||
(!!publishedAt && (
|
||||
<RelativeTime datetime={publishedAt} format="micro" />
|
||||
|
@ -2304,8 +2304,8 @@ function Card({ card, selfReferential, instance }) {
|
|||
<p class="meta domain">
|
||||
<Icon icon="link" size="s" /> <span>{domain}</span>
|
||||
</p>
|
||||
<p class="title">{title}</p>
|
||||
<p class="meta">{description || providerName || authorName}</p>
|
||||
<p class="title" title={title}>{title}</p>
|
||||
<p class="meta" title={description || providerName || authorName}>{description || providerName || authorName}</p>
|
||||
</div>
|
||||
</a>
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue