This commit is contained in:
Muhammad Shahzad
2024-06-05 16:38:49 +05:00
parent a924bd603e
commit 6c9391da7b
3 changed files with 9 additions and 2 deletions

View File

@@ -70,9 +70,10 @@ const downloadFile = (fileUrl) => {
</script>
<template>
<VCard title="Notes">
<VList class="pb-0" lines="two" v-if="notes.length > 0">
<template v-for="(p_note, index) in notes" :key="index">
<VListItem class="pb-0" border>
<VListItem class="pb-0">
<VListItemTitle>
<span class="pb-0">{{ p_note.note }}</span>
<span v-if="p_note.file_url" style="font-size: 12px;float: right;">
@@ -96,4 +97,5 @@ const downloadFile = (fileUrl) => {
</VAlert>
</VCard>
</template>
</VCard>
</template>