diff --git a/src/components/ui/CardSummary.vue b/src/components/ui/CardSummary.vue index b54e44398..dc749f4a7 100644 --- a/src/components/ui/CardSummary.vue +++ b/src/components/ui/CardSummary.vue @@ -82,11 +82,13 @@ watch(props, async () => { .summaryBody { display: flex; flex-direction: row; + flex-wrap: wrap; justify-content: space-evenly; gap: 15px; padding: 15px; > .q-card.vn-one { + width: 350px; flex: 1; } > .q-card.vn-two { @@ -123,7 +125,6 @@ watch(props, async () => { width: max-content; overflow: hidden; white-space: nowrap; - text-overflow: ellipsis; } } .header { diff --git a/src/components/ui/VnLv.vue b/src/components/ui/VnLv.vue index 0f9b99713..b8da70feb 100644 --- a/src/components/ui/VnLv.vue +++ b/src/components/ui/VnLv.vue @@ -9,6 +9,7 @@ const $props = defineProps({ titleValue: { type: [Number, String, Boolean], default: null }, info: { type: String, default: null }, dash: { type: Boolean, default: true }, + ellipsisValue: { type: Boolean, default: true }, }); const isBooleanValue = computed(() => typeof $props.value === 'boolean'); @@ -19,7 +20,7 @@ const isBooleanValue = computed(() => typeof $props.value === 'boolean'); {{ $props.label }} -