Notizen in Bankauflistung kennzeichnen
All checks were successful
Build and Push Docker Images / build-backend (push) Successful in 57s
Build and Push Docker Images / build-frontend (push) Successful in 1m56s
Build and Push Docker Images / build-website (push) Successful in 35s
Build and Push Docker Images / build-central-services-api (push) Successful in 33s
Build and Push Docker Images / build-central-services-admin (push) Successful in 33s
Build and Push Docker Images / build-docs (push) Successful in 33s

This commit is contained in:
2026-08-09 16:25:21 +02:00
parent 53463675ff
commit 94008e8072

View File

@@ -771,8 +771,16 @@ onMounted(() => {
<td class="p-4 truncate max-w-[180px] font-medium">
{{ row.amount < 0 ? row.credName : row.debName }}
</td>
<td class="p-4 text-gray-500 truncate max-w-[350px] text-xs">
{{ row.text }}
<td class="p-4 text-gray-500 max-w-[350px] text-xs">
<div class="flex items-center gap-2 min-w-0">
<UTooltip v-if="String(row.notes || '').trim()" text="Notiz hinterlegt">
<UIcon
name="i-heroicons-chat-bubble-left-ellipsis"
class="w-4 h-4 shrink-0 text-primary-500"
/>
</UTooltip>
<span class="truncate">{{ row.text }}</span>
</div>
</td>
</tr>
</template>