mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-06-06 20:37:32 +00:00
23 lines
583 B
Vue
23 lines
583 B
Vue
<script setup lang="ts">
|
|
import type { Invitation } from '@/utils/api';
|
|
import TableRow from '@/Components/TableRow.vue';
|
|
import { capitalizeFirstLetter } from '../../../utils/format';
|
|
|
|
defineProps<{
|
|
invitation: Invitation;
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<TableRow>
|
|
<div class="whitespace-nowrap px-3 py-4 text-sm text-muted">
|
|
{{ invitation.email }}
|
|
</div>
|
|
<div class="whitespace-nowrap px-3 py-4 text-sm text-muted">
|
|
{{ capitalizeFirstLetter(invitation.role) }}
|
|
</div>
|
|
</TableRow>
|
|
</template>
|
|
|
|
<style scoped></style>
|