@arsedizioni/ars-utils 19.2.3 → 19.2.5

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.
@@ -3949,8 +3949,8 @@ class ClipperBrowserDialogComponent {
3949
3949
  */
3950
3950
  select() {
3951
3951
  const selection = this.clipperBrowser().selection;
3952
- if (selection?.current.selected && selection?.current.selected.length > 0) {
3953
- this.broadcastService.sendMessage(ClipperMessages.DOCUMENT_SELECTED, selection?.current.selected);
3952
+ if (selection?.all && selection?.all.length > 0) {
3953
+ this.broadcastService.sendMessage(ClipperMessages.DOCUMENT_SELECTED, selection?.all);
3954
3954
  this.changeDetector.markForCheck();
3955
3955
  this.dialogRef.close();
3956
3956
  }