UI improvements part 5

This commit is contained in:
Čarodej
2022-01-28 09:17:36 +01:00
parent 0c71329dee
commit 42c2ffc274
13 changed files with 141 additions and 29 deletions
+12
View File
@@ -0,0 +1,12 @@
<template>
<div v-if="$store.getters.isLimitedUser" class="bg-red-500 text-center py-1">
<router-link :to="{name: 'Billing'}" class="text-white font-bold text-xs">
{{ $t('Your functionality is restricted. Please review your billing settings.') }}
</router-link>
</div>
</template>
<script>
export default {
name: 'RestrictionWarningBar',
}
</script>