mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-22 15:10:57 -05:00
Merge pull request #72 from ryanalexander/patch-2
This commit is contained in:
commit
a2bc3b8188
1 changed files with 8 additions and 1 deletions
|
@ -315,7 +315,11 @@ export const UserProfile = observer(
|
||||||
content={
|
content={
|
||||||
<Text id="app.special.popovers.user_profile.badges.translator" />
|
<Text id="app.special.popovers.user_profile.badges.translator" />
|
||||||
}>
|
}>
|
||||||
<img src="/assets/badges/translator.svg" />
|
<img src="/assets/badges/translator.svg"
|
||||||
|
onClick={() => {
|
||||||
|
window.open("https://weblate.insrt.uk/projects/revolt/web-app/", "_blank")
|
||||||
|
}}
|
||||||
|
/>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
) : (
|
) : (
|
||||||
<></>
|
<></>
|
||||||
|
@ -338,6 +342,9 @@ export const UserProfile = observer(
|
||||||
<Money
|
<Money
|
||||||
size={32}
|
size={32}
|
||||||
color="#efab44"
|
color="#efab44"
|
||||||
|
onClick={() => {
|
||||||
|
window.open("https://insrt.uk/donate", "_blank")
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
) : (
|
) : (
|
||||||
|
|
Loading…
Reference in a new issue