Skip to content

Commit

Permalink
Merge pull request #232 from ecency/bugfix/reputation
Browse files Browse the repository at this point in the history
Fixed account reputation layout
  • Loading branch information
feruzm authored Jan 24, 2025
2 parents c9e1f68 + 790d437 commit 895a2eb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function EntryFooterInfo({ entry }: Props) {
<div className="author notranslate">
<span className="author-name">{entry.author}</span>
<span className="author-reputation" title={i18next.t("entry.author-reputation")}>
{reputation}
({reputation})
</span>
</div>
</ProfileLink>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export function EntryPageCrossPostBody({ entry }: Props) {
</span>
</span>
<span className="author-reputation" title={i18next.t("entry.author-reputation")}>
{reputation}
({reputation})
</span>
</div>
</ProfileLink>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export function EntryPageMainInfo({ entry }: Props) {
>
<span itemProp="name">{entry.author}</span>
<span className="author-reputation" title={i18next.t("entry.author-reputation")}>
{reputation}
({reputation})
</span>
</div>
</ProfileLink>
Expand Down
2 changes: 1 addition & 1 deletion src/features/shared/search-list-item/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export function SearchListItem({ res }: Props) {
<ProfileLink username={res.author}>
<div className="author">
{res.author}
<span className="author-reputation">{reputation}</span>
<span className="author-reputation">({reputation})</span>
</div>
</ProfileLink>
</div>
Expand Down

0 comments on commit 895a2eb

Please sign in to comment.