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; } 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 @@