@arsedizioni/ars-utils 21.1.75 → 21.1.76

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.
@@ -2397,11 +2397,10 @@ class ClipperSearchResultManager extends ClipperDocumentManager {
2397
2397
  openDocument(documentId, query, queryChunks) {
2398
2398
  if (!documentId)
2399
2399
  return;
2400
- query = query ?? ClipperSearchUtils.normalizeTextQuery(this.filterParams.text);
2400
+ query = query ?? ClipperSearchUtils.normalizeTextQuery2(this.filterParams.text);
2401
2401
  if ((this.filterParams.flags & ClipperQueryDocumentFlags.UseSemanticSearch) > 0) {
2402
2402
  query = '$' + query;
2403
2403
  }
2404
- console.log('Opening document ' + documentId + ' with query: ' + query);
2405
2404
  ClipperDocumentsUtils.openDocument(this.injector, documentId, query, queryChunks, this.selectionMode(), null, this.themeService.getTheme(), this.canUseArchive(), this.canHandleTooManyResults());
2406
2405
  }
2407
2406
  ///