mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 01:47:39 -07:00
fix: 🐛 properly show instance's link
This commit is contained in:
parent
80b0735054
commit
ae00ff0bb2
1 changed files with 3 additions and 3 deletions
|
@ -10,7 +10,7 @@
|
|||
</div>
|
||||
<div :class="$style.text">
|
||||
{{ i18n.ts._aboutMisskey.pleaseDonateToCalckey }}
|
||||
<p v-if="instance.donationLink">
|
||||
<p v-if="$instance.donationLink">
|
||||
{{
|
||||
i18n.t("_aboutMisskey.pleaseDonateToHost", {
|
||||
host: hostname,
|
||||
|
@ -27,9 +27,9 @@
|
|||
>{{ i18n.ts._aboutMisskey.donate }}</MkButton
|
||||
>
|
||||
<MkButton
|
||||
v-if="instance.donationLink"
|
||||
v-if="$instance.donationLink"
|
||||
primary
|
||||
@click="openExternal(instance.donationLink)"
|
||||
@click="openExternal($instance.donationLink)"
|
||||
>{{
|
||||
i18n.t("_aboutMisskey.donateHost", {
|
||||
host: hostname,
|
||||
|
|
Loading…
Reference in a new issue