Skip to content

Commit

Permalink
summarize footer count & min labels fix (#1811)
Browse files Browse the repository at this point in the history
Co-authored-by: DEEHFAR1 <ehsanahmed.farooqi@de.toyota-industries.eu>
  • Loading branch information
eafarooqi and DEEHFAR1 authored Dec 19, 2024
1 parent 56e5089 commit 44c4f72
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 44c4f72

Please sign in to comment.