Skip to content

Commit

Permalink
Merge pull request #73 from devaslanphp/dev
Browse files Browse the repository at this point in the history
Bug-fix: check the project description
  • Loading branch information
heloufir authored Sep 23, 2022
2 parents 614efb3 + 0a63468 commit af1d329
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Livewire/Projects.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ protected function getTableColumns(): array
->label(__('Description'))
->searchable()
->sortable()
->formatStateUsing(fn(string $state) => Str::limit(htmlspecialchars(strip_tags($state)), 50)),
->formatStateUsing(fn(string $state) => Str::limit(htmlspecialchars(strip_tags($state ?? '')), 50)),

UserColumn::make('owner')
->label(__('Owner')),
Expand Down

0 comments on commit af1d329

Please sign in to comment.