@arsedizioni/ars-utils 19.0.83 → 19.0.85

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.
@@ -952,7 +952,9 @@ class ClipperDocumentComponent extends ClipperDocumentManager {
952
952
  if (this.closing) {
953
953
  this.closing.emit();
954
954
  }
955
- this.dialogRef.close();
955
+ setTimeout(() => {
956
+ this.dialogRef.close();
957
+ }, 500);
956
958
  }
957
959
  /**
958
960
  * Navigate to a new document
@@ -3244,7 +3246,7 @@ class ClipperBrowserComponent extends ClipperSearchResultManager {
3244
3246
  */
3245
3247
  selectFilter(item) {
3246
3248
  if (item && item.value.data) {
3247
- this.filterSelector().select(item);
3249
+ this.filterSelector().select(item, false);
3248
3250
  const filter = JSON.parse(item.value.data);
3249
3251
  this.filterParams.searchId = item.value.id;
3250
3252
  this.filterParams.searchName = item.value.name;