Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Baakoma committed Oct 25, 2024
1 parent 5dfaabc commit 734071f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Domain/EquipmentExport.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function generator(): Generator
$equipmentItem->id_number,
$equipmentItem->name,
$equipmentItem->labels?->implode(", "),
$equipmentItem->is_mobile ? 'Tak' : 'Nie',
$equipmentItem->is_mobile ? "Tak" : "Nie",
$equipmentItem->assignee->profile->full_name ?? "",
$equipmentItem->assigned_at ? Date::dateTimeToExcel($equipmentItem->assigned_at) : "",
];
Expand Down

0 comments on commit 734071f

Please sign in to comment.