Application integration

This commit is contained in:
2025-12-13 01:36:12 -05:00
parent 93e8f3b3d2
commit 533e315642
2 changed files with 6 additions and 2 deletions

View File

@@ -15,6 +15,7 @@ import { useAuth } from '@/composables/useAuth'
import { CommentRow } from '@shared/types/application'
import { Dot } from 'lucide-vue-next'
import { ref } from 'vue'
import MemberCard from '../members/MemberCard.vue'
const props = defineProps<{
messages: CommentRow[]
@@ -71,7 +72,7 @@ function onSubmit(values: { text: string }, { resetForm }: { resetForm: () => vo
<!-- Comment header -->
<div class="flex justify-between">
<div class="flex">
<p>{{ message.poster_name }}</p>
<MemberCard :member-id="message.poster_id"></MemberCard>
<p v-if="message.admin_only" class="flex">
<Dot /><span class="text-amber-300">Internal</span>
</p>