@arsedizioni/ars-utils 21.2.103 → 21.2.106

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -350,9 +350,13 @@ class ClipperDocumentManager {
350
350
  });
351
351
  d.componentInstance.done
352
352
  .subscribe((data) => {
353
- data.ids = items?.map(n => n.documentId ?? n.id) ?? [];
353
+ const params = {
354
+ recipients: data.recipients,
355
+ subject: data.subject,
356
+ ids: items?.map(n => n.documentId ?? n.id) ?? []
357
+ };
354
358
  this.dialogService.busy('Invio in corso...');
355
- this.clipperService.sendTo(data)
359
+ this.clipperService.sendTo(params)
356
360
  .pipe(finalize(() => this.dialogService.clearBusy()))
357
361
  .subscribe(r => {
358
362
  if (!r.success) {