From 2f5d8b5564ad966ef783d98e1e9002e57ec88000 Mon Sep 17 00:00:00 2001 From: Yongtae Park Date: Thu, 29 Aug 2024 17:16:10 +0900 Subject: [PATCH 1/2] fix: edit table widget style Signed-off-by: samuel.park --- .../widgets/_widgets/table/_component/WidgetDataTable.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/src/common/modules/widgets/_widgets/table/_component/WidgetDataTable.vue b/apps/web/src/common/modules/widgets/_widgets/table/_component/WidgetDataTable.vue index de830f2199..a9ba6aca79 100644 --- a/apps/web/src/common/modules/widgets/_widgets/table/_component/WidgetDataTable.vue +++ b/apps/web/src/common/modules/widgets/_widgets/table/_component/WidgetDataTable.vue @@ -397,7 +397,7 @@ const getFieldWidth = (field: TableWidgetField): string|undefined => { minWidth: getFieldMinWidth(field), width: getFieldWidth(field), maxWidth: getFieldWidth(field), - ...(rowIndex !== props.items?.length - 1 ? getHeatmapColorStyle(item, field) : {}), + ...(rowIndex !== props.items?.length - 1 || !props.totalInfo?.toggleValue ? getHeatmapColorStyle(item, field) : {}), }" > { tbody { tr { &:nth-child(odd) { + @apply bg-gray-100; td { - @apply bg-gray-100; &.sub-total { @apply bg-violet-150; } From 45e7999a65fff13972cf36e4c893ac156d56804f Mon Sep 17 00:00:00 2001 From: Yongtae Park Date: Thu, 29 Aug 2024 17:16:39 +0900 Subject: [PATCH 2/2] fix: apply new dashboard label filter planning Signed-off-by: samuel.park --- .../dashboards/components/DashboardCreateStep1.vue | 14 +++++++++++++- .../DashboardCreateStep1SearchFilter.vue | 8 +++++++- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/apps/web/src/services/dashboards/components/DashboardCreateStep1.vue b/apps/web/src/services/dashboards/components/DashboardCreateStep1.vue index 81aebb0eda..214086beb3 100644 --- a/apps/web/src/services/dashboards/components/DashboardCreateStep1.vue +++ b/apps/web/src/services/dashboards/components/DashboardCreateStep1.vue @@ -1,6 +1,8 @@