Skip to content

Commit 17ee8be

Browse files
committed
range start change
1 parent cf47f8f commit 17ee8be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/View/Label.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ public function render(callable $callback = null)
223223
$emptyRowsCount = $settings->label2_empty_row_count;
224224
if($emptyRowsCount) {
225225
// Create empty rows
226-
$emptyRows = collect(range(1, $emptyRowsCount))->map(function () {
226+
$emptyRows = collect(range(0, $emptyRowsCount))->map(function () {
227227
return [
228228
'label' => '',
229229
'value' => '',

0 commit comments

Comments
 (0)