mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-01 01:59:56 +00:00
add tooltip
This commit is contained in:
parent
b69ad1264d
commit
1faa9f354b
1 changed files with 5 additions and 1 deletions
|
@ -315,7 +315,11 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
|
||||||
<Icon icon="shield" inline classes="text-danger me-2" />
|
<Icon icon="shield" inline classes="text-danger me-2" />
|
||||||
)}
|
)}
|
||||||
{this.isPostCreator && (
|
{this.isPostCreator && (
|
||||||
<div className="badge text-info text-bg-light d-none d-sm-inline me-2">
|
<div
|
||||||
|
className="badge text-info text-bg-light d-none d-sm-inline me-2"
|
||||||
|
aria-label={I18NextService.i18n.t("creator")}
|
||||||
|
data-tippy-content={I18NextService.i18n.t("creator")}
|
||||||
|
>
|
||||||
{I18NextService.i18n.t("op").toUpperCase()}
|
{I18NextService.i18n.t("op").toUpperCase()}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
Loading…
Reference in a new issue