Skip to content

Commit

Permalink
Merge pull request #75 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 af1d329 + 5321f44 commit 6f6902e
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|null $state) => Str::limit(htmlspecialchars(strip_tags($state ?? '')), 50)),

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

0 comments on commit 6f6902e

Please sign in to comment.