Skip to content

Commit

Permalink
fix: Searching column that does not exist
Browse files Browse the repository at this point in the history
  • Loading branch information
CalumTowers committed Dec 21, 2024
1 parent c56d70c commit 8a9f98d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/Filament/Resources/StandAssignmentsHistoryResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,7 @@ public static function table(Table $table): Table
->searchable(),
TextColumn::make('identifier')
->getStateUsing(fn (StandAssignmentsHistory $record) => $record->stand->airfieldIdentifier)
->label(static::translateTablePath('columns.identifier'))
->searchable(),
->label(static::translateTablePath('columns.identifier')),
TextColumn::make('assigned_at')
->label(static::translateTablePath('columns.assigned_at'))
->dateTime(),
Expand Down

0 comments on commit 8a9f98d

Please sign in to comment.