mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-14 11:12:16 +01:00
add format check, update prettier rules, apply rules consistently
This commit is contained in:
@@ -26,34 +26,23 @@
|
||||
<div class="max-w-sm text-center mx-auto py-4 text-base">
|
||||
<p class="py-1">
|
||||
Your organization is currently
|
||||
<strong class="font-semibold"
|
||||
>blocked from performing this action</strong
|
||||
>
|
||||
<strong class="font-semibold">blocked from performing this action</strong>
|
||||
</p>
|
||||
<p class="py-1">
|
||||
To unblock your organization, please
|
||||
<strong class="font-semibold">
|
||||
upgrade to a premium plan</strong
|
||||
>
|
||||
<strong class="font-semibold"> upgrade to a premium plan</strong>
|
||||
or remove all users except the owner.
|
||||
</p>
|
||||
|
||||
<Link
|
||||
v-if="isBillingActivated() && canManageBilling()"
|
||||
href="/billing">
|
||||
<PrimaryButton
|
||||
:icon="CreditCardIcon"
|
||||
type="button"
|
||||
class="mt-6">
|
||||
<Link v-if="isBillingActivated() && canManageBilling()" href="/billing">
|
||||
<PrimaryButton :icon="CreditCardIcon" type="button" class="mt-6">
|
||||
Go to Billing
|
||||
</PrimaryButton>
|
||||
</Link>
|
||||
</div>
|
||||
</template>
|
||||
<template #footer>
|
||||
<SecondaryButton @click="showActionBlockedModal = false">
|
||||
Cancel</SecondaryButton
|
||||
>
|
||||
<SecondaryButton @click="showActionBlockedModal = false"> Cancel</SecondaryButton>
|
||||
</template>
|
||||
</DialogModal>
|
||||
</template>
|
||||
@@ -70,7 +59,5 @@ import { Link } from '@inertiajs/vue3';
|
||||
import PrimaryButton from '../packages/ui/src/Buttons/PrimaryButton.vue';
|
||||
import SecondaryButton from '../packages/ui/src/Buttons/SecondaryButton.vue';
|
||||
|
||||
const { notifications, showActionBlockedModal } = storeToRefs(
|
||||
useNotificationsStore()
|
||||
);
|
||||
const { notifications, showActionBlockedModal } = storeToRefs(useNotificationsStore());
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user