Skip to content

Commit

Permalink
Merge pull request #150 from vatsimnetwork/development
Browse files Browse the repository at this point in the history
Hotfix 1.8.3a
  • Loading branch information
lieselwd authored Oct 19, 2024
2 parents 55afc02 + fb273e3 commit 312d24c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/Http/Livewire/Controllers/LtNewPending.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ public function columns(): array
Column::make("Track")
->label(function ($row, Column $column) {
$msg = RclMessage::whereId($row->id)->first();
if ($msg == null) return "N/A";
return $msg->track ? $msg->track->identifier : 'RR';
}),
Column::make("Flight level", "flight_level"),
Expand Down
1 change: 1 addition & 0 deletions app/Http/Livewire/Controllers/LtNewProcessed.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ public function columns(): array
Column::make("Track")
->label(function ($row, Column $column) {
$msg = ClxMessage::whereId($row->id)->first();
if ($msg == null) return "N/A";
return $msg->track ? $msg->track->identifier : 'RR';
}),
Column::make("Flight level", "flight_level"),
Expand Down

0 comments on commit 312d24c

Please sign in to comment.