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
commit ace73acba1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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