Skip to content

Commit

Permalink
fix: stop searching by name on endorsement requests
Browse files Browse the repository at this point in the history
  • Loading branch information
AxonC committed Feb 29, 2024
1 parent 729a4c1 commit ba03b90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Filament/Resources/EndorsementRequestResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ public static function table(Table $table): Table
{
return $table
->columns([
Tables\Columns\TextColumn::make('account_id')->label('CID')->searchable(),
Tables\Columns\TextColumn::make('account.name')->label('Name')->searchable(),
Tables\Columns\TextColumn::make('account_id')->label('CID'),
Tables\Columns\TextColumn::make('account.name')->label('Name'),
Tables\Columns\TextColumn::make('typeForHumans')->label('Type'),
Tables\Columns\TextColumn::make('endorsable.name')->label('Position/Endorsement'),
Tables\Columns\TextColumn::make('status')->badge()->color(fn (EndorsementRequest $endorsementRequest) => match ($endorsementRequest->status) {
Expand Down

0 comments on commit ba03b90

Please sign in to comment.