fixed billing app fixes

This commit is contained in:
Čarodej
2022-02-11 17:25:39 +01:00
parent eb948f9000
commit 948c7453a6
4 changed files with 13 additions and 8 deletions

View File

@@ -8,11 +8,11 @@
{{ $t('Free Plan') }}
</b>
<b class="mb-3 mb-8 block text-sm text-gray-400">
{{ $t('1GB Free storage space with 5 Team members') }}
<b v-if="$store.getters.config.allowed_payments" class="mb-3 mb-8 block text-sm text-gray-400">
{{ $t('Upgrade your account to get more.') }}
</b>
<ButtonBase @click.native="$openUpgradeOptions" type="submit" button-style="theme" class="mt-4 w-full">
<ButtonBase v-if="$store.getters.config.allowed_payments" @click.native="$openUpgradeOptions" type="submit" button-style="theme" class="mt-4 w-full">
{{ $t('Upgrade Your Account') }}
</ButtonBase>
</div>