Skip to content

Commit

Permalink
fix(print): Reflect rxjs change in next() method
Browse files Browse the repository at this point in the history
  • Loading branch information
jmacura committed Feb 26, 2025
1 parent e42fc2b commit 7e8355f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/hslayers/components/print/print-legend.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export class HsPrintLegendService extends PrintLegendParams {
subscriber.complete();
};
img.onerror = function (event) {
subscriber.next();
subscriber.next(null);
subscriber.complete();
};
if (
Expand Down

0 comments on commit 7e8355f

Please sign in to comment.