Skip to content

Commit

Permalink
move orphaned semicolon in templates
Browse files Browse the repository at this point in the history
  • Loading branch information
MrYamous authored Nov 8, 2024
1 parent 703913b commit 582f1f4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/views/components/cols.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class="{{ theme_style($theme, 'table.header.th') . ' ' . data_get($column, 'head
@if ($isFixedOnResponsive) fixed @endif
@if (data_get($column, 'enableSort')) x-multisort-shift-click="{{ $this->getId() }}"
wire:click="sortBy('{{ $field }}')" @endif
style="{{ data_get($column, 'hidden') === true ? 'display:none' : '' }}; width: max-content !important; @if (data_get($column, 'enableSort')) cursor:pointer; @endif {{ data_get($column, 'headerStyle') }}"
style="{{ data_get($column, 'hidden') === true ? 'display:none' : ''; }} width: max-content !important; @if (data_get($column, 'enableSort')) cursor:pointer; @endif {{ data_get($column, 'headerStyle') }}"
>
<div
class="{{ theme_style($theme, 'cols.div') }}"
Expand Down
2 changes: 1 addition & 1 deletion resources/views/components/table-footer.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class="{{ theme_style($theme, 'table.body.td') }}"
@foreach ($this->visibleColumns as $column)
<td
class="{{ theme_style($theme, 'table.body.tdSummarize') . ' ' . data_get($column, 'bodyClass') ?? '' }}"
style="{{ data_get($column, 'hidden') === true ? 'display:none' : '' }}; . {{ data_get($column, 'bodyStyle') ?? '' }}"
style="{{ data_get($column, 'hidden') === true ? 'display:none;' : '' }} . {{ data_get($column, 'bodyStyle') ?? '' }}"
>
@include('livewire-powergrid::components.summarize', [
'sum' => data_get($column, 'properties.summarize.sum.footer') ? data_get($column, 'properties.summarize_values.sum') : null,
Expand Down
2 changes: 1 addition & 1 deletion resources/views/components/table-header.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
@endif
@foreach ($this->visibleColumns as $column)
<td class="{{ theme_style($theme, 'table.body.tdSummarize') . ' '.data_get($column, 'bodyClass') ?? '' }}"
style="{{ data_get($column, 'hidden') === true ? 'display:none': '' }}; {{ data_get($column, 'bodyStyle') ?? '' }}">
style="{{ data_get($column, 'hidden') === true ? 'display:none;': '' }} {{ data_get($column, 'bodyStyle') ?? '' }}">
@include('livewire-powergrid::components.summarize', [
'sum' => data_get($column, 'properties.summarize.sum.header') ? data_get($column, 'properties.summarize_values.sum') : null,
'labelSum' => data_get($column, 'properties.summarize.sum.label'),
Expand Down

0 comments on commit 582f1f4

Please sign in to comment.