Skip to content

Commit

Permalink
summarize footer count & min labels fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DEEHFAR1 committed Dec 19, 2024
1 parent 04b62e1 commit bfa8288
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/views/components/table-footer.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
Expand Down

0 comments on commit bfa8288

Please sign in to comment.