Merge pull request #12263 from Godmartinz/gh12211_label_padding_adjustment

Fixed: page-break and padding at the end of document for labels
This commit is contained in:
snipe
2023-01-05 09:59:35 -08:00
committed by GitHub

View File

@@ -166,9 +166,9 @@ $qr_size = ($settings->alt_barcode_enabled=='1') && ($settings->alt_barcode!='')
</div>
@if ($count % $settings->labels_per_page == 0)
<div class="page-break"></div>
<div class="next-padding">&nbsp;</div>
@if (($count % $settings->labels_per_page == 0) && $count!=count($assets))
<div class="page-break"></div>
<div class="next-padding">&nbsp;</div>
@endif
@endforeach