From bfa82889c2de528d7fc335cd4125715c638580c5 Mon Sep 17 00:00:00 2001 From: DEEHFAR1 Date: Thu, 19 Dec 2024 11:35:46 +0100 Subject: [PATCH] summarize footer count & min labels fix --- resources/views/components/table-footer.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/components/table-footer.blade.php b/resources/views/components/table-footer.blade.php index 3480b35e..3147def0 100644 --- a/resources/views/components/table-footer.blade.php +++ b/resources/views/components/table-footer.blade.php @@ -20,10 +20,10 @@ class="{{ theme_style($theme, 'table.body.tdSummarize') . ' ' . data_get($column 'labelSum' => data_get($column, 'properties.summarize.sum.label'), 'count' => data_get($column, 'properties.summarize.count.footer') ? data_get($column, 'properties.summarize_values.count') : null, - 'labelCount' => data_get($column, 'properties.summarize.count.footer'), + 'labelCount' => data_get($column, 'properties.summarize.count.label'), 'min' => data_get($column, 'properties.summarize.min.footer') ? data_get($column, 'properties.summarize_values.min') : null, - 'labelMin' => data_get($column, 'properties.summarize.min.footer'), + 'labelMin' => data_get($column, 'properties.summarize.min.label'), 'max' => data_get($column, 'properties.summarize.max.footer') ? data_get($column, 'properties.summarize_values.max') : null, 'labelMax' => data_get($column, 'properties.summarize.max.label'),