@arsedizioni/ars-utils 20.3.58 → 20.3.60

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.
@@ -704,8 +704,8 @@ declare class ClipperBrowserComponent extends ClipperSearchResultManager impleme
704
704
  */
705
705
  protected sort(newSort?: NameValueItem<any>): void;
706
706
  /**
707
- * Show free text help
708
- */
707
+ * Show free text help
708
+ */
709
709
  protected help(): void;
710
710
  /**
711
711
  * Compose a free text search query
@@ -2647,7 +2647,7 @@ class ClipperService {
2647
2647
  if (n.documentDescriptor) {
2648
2648
  const documentInfo = JSON.parse(n.documentDescriptor);
2649
2649
  if (documentInfo) {
2650
- n.documentId = documentInfo.DocumentId || documentInfo.Id;
2650
+ n.documentId = documentInfo.documentId || documentInfo.DocumentId || documentInfo.id || documentInfo.Id;
2651
2651
  n.title1 = documentInfo.Title1 ?? documentInfo.Title2;
2652
2652
  n.title2 = documentInfo.Title1 ? documentInfo.Title2 : undefined;
2653
2653
  }