Skip to content

Commit

Permalink
Merge pull request #1002 from normanfeltz/patch-1
Browse files Browse the repository at this point in the history
Fix copy paste fail ?!
  • Loading branch information
dbarzin authored Dec 5, 2024
2 parents 0aa1d5a + 408a149 commit 7944e05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/Admin/ReportController.php
Original file line number Diff line number Diff line change
Expand Up @@ -1626,7 +1626,7 @@ public function networkInfrastructure(Request $request)
}
if ($item->peripheral_dest_id !== null) {
$found = false;
foreach ($peripherals as $server) {
foreach ($peripherals as $peripheral) {
if ($item->peripheral_dest_id === $peripheral->id) {
$found = true;
break;
Expand Down

0 comments on commit 7944e05

Please sign in to comment.