fix: slug in parentheses, capitalize status, lighter timestamps, rename button
Both organisation pages: slug wrapped in parentheses, billing status label capitalized, timestamps use text-disabled for lighter appearance, edit button labeled "Bewerken" consistently. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -225,16 +225,16 @@ function confirmRevokeInvitation() {
|
|||||||
<div class="d-flex align-center gap-x-2">
|
<div class="d-flex align-center gap-x-2">
|
||||||
<h4 class="text-h4">
|
<h4 class="text-h4">
|
||||||
{{ organisation.name }}
|
{{ organisation.name }}
|
||||||
<span class="text-body-2 text-medium-emphasis font-weight-regular ms-2">{{ organisation.slug }}</span>
|
<span class="text-body-2 text-medium-emphasis font-weight-regular ms-2">({{ organisation.slug }})</span>
|
||||||
</h4>
|
</h4>
|
||||||
<VChip
|
<VChip
|
||||||
:color="statusColor[organisation.billing_status]"
|
:color="statusColor[organisation.billing_status]"
|
||||||
size="small"
|
size="small"
|
||||||
>
|
>
|
||||||
{{ organisation.billing_status }}
|
{{ organisation.billing_status.charAt(0).toUpperCase() + organisation.billing_status.slice(1) }}
|
||||||
</VChip>
|
</VChip>
|
||||||
</div>
|
</div>
|
||||||
<span class="text-caption text-medium-emphasis">
|
<span class="text-caption text-disabled">
|
||||||
Aangemaakt op {{ formatDate(organisation.created_at) }}
|
Aangemaakt op {{ formatDate(organisation.created_at) }}
|
||||||
· Gewijzigd op {{ formatDate(organisation.updated_at) }}
|
· Gewijzigd op {{ formatDate(organisation.updated_at) }}
|
||||||
</span>
|
</span>
|
||||||
@@ -244,7 +244,7 @@ function confirmRevokeInvitation() {
|
|||||||
prepend-icon="tabler-edit"
|
prepend-icon="tabler-edit"
|
||||||
@click="isEditDialogOpen = true"
|
@click="isEditDialogOpen = true"
|
||||||
>
|
>
|
||||||
Naam bewerken
|
Bewerken
|
||||||
</VBtn>
|
</VBtn>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -243,7 +243,7 @@ function formatDate(iso: string): string {
|
|||||||
<div class="d-flex align-center gap-x-2">
|
<div class="d-flex align-center gap-x-2">
|
||||||
<h4 class="text-h4">
|
<h4 class="text-h4">
|
||||||
{{ org.name }}
|
{{ org.name }}
|
||||||
<span class="text-body-2 text-medium-emphasis font-weight-regular ms-2">{{ org.slug }}</span>
|
<span class="text-body-2 text-medium-emphasis font-weight-regular ms-2">({{ org.slug }})</span>
|
||||||
</h4>
|
</h4>
|
||||||
<VChip
|
<VChip
|
||||||
:color="billingStatusColor[org.billing_status]"
|
:color="billingStatusColor[org.billing_status]"
|
||||||
@@ -252,7 +252,7 @@ function formatDate(iso: string): string {
|
|||||||
{{ org.billing_status_label ?? org.billing_status }}
|
{{ org.billing_status_label ?? org.billing_status }}
|
||||||
</VChip>
|
</VChip>
|
||||||
</div>
|
</div>
|
||||||
<span class="text-caption text-medium-emphasis">
|
<span class="text-caption text-disabled">
|
||||||
Aangemaakt op {{ formatDate(org.created_at) }}
|
Aangemaakt op {{ formatDate(org.created_at) }}
|
||||||
· Gewijzigd op {{ formatDate(org.updated_at) }}
|
· Gewijzigd op {{ formatDate(org.updated_at) }}
|
||||||
</span>
|
</span>
|
||||||
|
|||||||
Reference in New Issue
Block a user