bump version to v4.4.8

This commit is contained in:
Amruth Pillai
2025-10-01 11:11:59 +02:00
parent c7f8daaff3
commit ed5cb7f17b
5 changed files with 48 additions and 54 deletions

View File

@ -145,7 +145,7 @@ export class PrinterService {
Promise.all(
// eslint-disable-next-line unicorn/prefer-spread
Array.from(document.images).map((img) => {
if (img.complete) return;
if (img.complete) return Promise.resolve();
return new Promise((resolve) => {
// eslint-disable-next-line unicorn/prefer-add-event-listener
img.onload = img.onerror = resolve;