Merge branch 'add-order-frontend' into 'master'

Updated WarehouseOrderRequest

See merge request fronk/thetool!926
This commit is contained in:
Luca Haid
2025-01-20 14:42:42 +00:00

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>