@arsedizioni/ars-utils 21.2.116 → 21.2.118
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.
|
@@ -888,7 +888,7 @@ class ClipperDocumentComponent extends ClipperDocumentManager {
|
|
|
888
888
|
if (this.dialogData) {
|
|
889
889
|
if (this.dialogData.id) {
|
|
890
890
|
// Compose query
|
|
891
|
-
let id = this.dialogData.id;
|
|
891
|
+
let id = this.dialogData.id.toString();
|
|
892
892
|
const p = id.indexOf('#');
|
|
893
893
|
if (p != -1) {
|
|
894
894
|
id = id.substring(0, p);
|
|
@@ -2069,7 +2069,6 @@ class ClipperSearchResultManager extends ClipperDocumentManager {
|
|
|
2069
2069
|
if ((this.filterParams.flags & ClipperQueryDocumentFlags.UseSemanticSearch) > 0) {
|
|
2070
2070
|
query = '$' + query;
|
|
2071
2071
|
}
|
|
2072
|
-
console.log('Opening document', documentId, 'with query', query, 'and chunks', queryChunks);
|
|
2073
2072
|
ClipperDocumentsUtils.openDocument(this.injector, documentId, query, queryChunks, this.selectionMode(), null, this.themeService.getTheme(), this.canUseArchive(), this.canHandleTooManyResults());
|
|
2074
2073
|
}
|
|
2075
2074
|
///
|