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
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:
@@ -771,8 +771,16 @@ onMounted(() => {
|
|||||||
<td class="p-4 truncate max-w-[180px] font-medium">
|
<td class="p-4 truncate max-w-[180px] font-medium">
|
||||||
{{ row.amount < 0 ? row.credName : row.debName }}
|
{{ row.amount < 0 ? row.credName : row.debName }}
|
||||||
</td>
|
</td>
|
||||||
<td class="p-4 text-gray-500 truncate max-w-[350px] text-xs">
|
<td class="p-4 text-gray-500 max-w-[350px] text-xs">
|
||||||
{{ row.text }}
|
<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>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user