Skip to content

Commit 6f6902e

Browse files
authored
Merge pull request #75 from devaslanphp/dev
Bug-fix: check the project description
2 parents af1d329 + 5321f44 commit 6f6902e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/Http/Livewire/Projects.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ protected function getTableColumns(): array
7878
->label(__('Description'))
7979
->searchable()
8080
->sortable()
81-
->formatStateUsing(fn(string $state) => Str::limit(htmlspecialchars(strip_tags($state ?? '')), 50)),
81+
->formatStateUsing(fn(string|null $state) => Str::limit(htmlspecialchars(strip_tags($state ?? '')), 50)),
8282

8383
UserColumn::make('owner')
8484
->label(__('Owner')),

0 commit comments

Comments
 (0)