Add missing tooltips for a few buttons in the claim page
3465
This commit is contained in:
parent
4053a920d9
commit
746f0db1f1
2 changed files with 5 additions and 1 deletions
|
@ -105,7 +105,9 @@ function CommentList(props: Props) {
|
||||||
: __('%total_comments% comments', { total_comments: totalComments })
|
: __('%total_comments% comments', { total_comments: totalComments })
|
||||||
: __('Leave a comment')
|
: __('Leave a comment')
|
||||||
}
|
}
|
||||||
titleActions={<Button button="alt" icon={ICONS.REFRESH} onClick={() => fetchComments(uri)} />}
|
titleActions={
|
||||||
|
<Button button="alt" icon={ICONS.REFRESH} title={__('Refresh')} onClick={() => fetchComments(uri)} />
|
||||||
|
}
|
||||||
actions={
|
actions={
|
||||||
<>
|
<>
|
||||||
<CommentCreate uri={uri} />
|
<CommentCreate uri={uri} />
|
||||||
|
|
|
@ -87,6 +87,7 @@ function FileActions(props: Props) {
|
||||||
label={
|
label={
|
||||||
claim.meta.reposted > 1 ? __(`%repost_total% Reposts`, { repost_total: claim.meta.reposted }) : __('Repost')
|
claim.meta.reposted > 1 ? __(`%repost_total% Reposts`, { repost_total: claim.meta.reposted }) : __('Repost')
|
||||||
}
|
}
|
||||||
|
description={__('Repost')}
|
||||||
requiresAuth={IS_WEB}
|
requiresAuth={IS_WEB}
|
||||||
onClick={handleRepostClick}
|
onClick={handleRepostClick}
|
||||||
/>
|
/>
|
||||||
|
@ -94,6 +95,7 @@ function FileActions(props: Props) {
|
||||||
className="button--file-action"
|
className="button--file-action"
|
||||||
icon={ICONS.SHARE}
|
icon={ICONS.SHARE}
|
||||||
label={__('Share')}
|
label={__('Share')}
|
||||||
|
title={__('Share')}
|
||||||
onClick={() => openModal(MODALS.SOCIAL_SHARE, { uri, webShareable })}
|
onClick={() => openModal(MODALS.SOCIAL_SHARE, { uri, webShareable })}
|
||||||
/>
|
/>
|
||||||
</>
|
</>
|
||||||
|
|
Loading…
Reference in a new issue