Updated WarehouseOrderRequest

This commit is contained in:
Luca Haid
2025-01-20 15:42:27 +01:00
parent 6e87b77387
commit 8e2b959af4

View File

@@ -16,7 +16,7 @@ Vue.component('warehouse-order-request', {
</template>
<template v-slot:note="{ row }">
<span v-if="row.note.length > 45" :title="row.note">{{ row.note.substring(0, 45) }}...</span>
<span v-if="row.note && row.note.length > 45" :title="row.note">{{ row.note.substring(0, 45) }}...</span>
<span v-else>{{ row.note }}</span>
</template>