Skip to content

Commit 4077d55

Browse files
authored
Merge pull request #3079 from codeeu/fix/update-resources
Update Resource Description
2 parents 2d93d64 + c0996a3 commit 4077d55

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

app/Console/Commands/Onetime/UpdateResourceDescriptions.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ public function handle(): int
4646
return self::FAILURE;
4747
}
4848

49-
$data = collect($rows[0]);
49+
// Skip Row 1 is header
50+
$data = collect($rows[0])->skip(1);
5051
$results = [];
5152
$updated = 0;
5253

-3.36 KB
Binary file not shown.

0 commit comments

Comments
 (0)