From 0e5e092450df5d2b7f717aae0a976c3bced6bc39 Mon Sep 17 00:00:00 2001 From: Jon Date: Thu, 10 Apr 2025 14:53:25 +0200 Subject: [PATCH] fix: ticket address and fixed CustomerSummary height fields --- src/components/ui/VnLv.vue | 6 +++++- src/pages/Customer/Card/CustomerSummary.vue | 12 ++++++++---- src/pages/Customer/locale/en.yml | 4 ++++ src/pages/Customer/locale/es.yml | 4 ++++ src/pages/Ticket/Card/TicketSummary.vue | 6 +++++- 5 files changed, 26 insertions(+), 6 deletions(-) diff --git a/src/components/ui/VnLv.vue b/src/components/ui/VnLv.vue index aa7342742..c2a9b0581 100644 --- a/src/components/ui/VnLv.vue +++ b/src/components/ui/VnLv.vue @@ -6,6 +6,7 @@ import { computed } from 'vue'; const $props = defineProps({ label: { type: String, default: null }, + toolTip: { type: String, default: null }, value: { type: [String, Boolean, Number], default: null, @@ -40,7 +41,10 @@ const val = computed(() => $props.value);