Skip to content

Commit

Permalink
Merge branch 'main' of g89:eighty9nine/filament-reports
Browse files Browse the repository at this point in the history
  • Loading branch information
eighty9nine committed Apr 18, 2024
2 parents 602580e + f08c6a1 commit ac8646b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Components/Body/Concerns/HasColumns.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,11 @@ public function isFirstWithinGroup(
) {
$tableData = $this->data->toArray();

if($rowIndex == 0){
if ($rowIndex == 0) {
return true;
}
try {
return !($tableData[$rowIndex - 1][$columnKey] == $columnValue);
return ! ($tableData[$rowIndex - 1][$columnKey] == $columnValue);
} catch (\Throwable $th) {
return false;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Body/TextColumn.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ class TextColumn extends Column
{
use Concerns\CanBeCopied;
use Concerns\CanFormatState;
use Concerns\CanGroupRows;
use Concerns\HasColor;
use Concerns\HasDescription;
use Concerns\HasFontFamily;
use Concerns\HasIcon;
use Concerns\HasIconColor;
use Concerns\HasSum;
use Concerns\HasWeight;
use Concerns\CanGroupRows;
use HasLineClamp;

/**
Expand Down

0 comments on commit ac8646b

Please sign in to comment.