diff --git a/specifyweb/express_search/related.py b/specifyweb/express_search/related.py index 42a681fc481..b09c1a7fe32 100644 --- a/specifyweb/express_search/related.py +++ b/specifyweb/express_search/related.py @@ -134,7 +134,8 @@ def build_related_query(self, session, config, terms, collection, user): negate=False, display=False, format_name=None, - sort_type=0) + sort_type=0, + strict=False) logger.debug("primary queryfield: %s", primary_field) logger.debug("display queryfields: %s", self.display_fields) diff --git a/specifyweb/frontend/js_src/lib/utils/cache/definitions.ts b/specifyweb/frontend/js_src/lib/utils/cache/definitions.ts index 19a0377c69a..853a745fe16 100644 --- a/specifyweb/frontend/js_src/lib/utils/cache/definitions.ts +++ b/specifyweb/frontend/js_src/lib/utils/cache/definitions.ts @@ -73,15 +73,15 @@ export type CacheDefinitions = { readonly applyAll: boolean; }; readonly tree: { - readonly [key in `definition${AnyTree['tableName']}`]: number; - } & { - readonly [key in `focusPath${AnyTree['tableName']}`]: RA; - } & { /** Collapsed ranks in a given tree */ readonly [key in `collapsedRanks${AnyTree['tableName']}`]: RA; } & { /** Open nodes in a given tree */ readonly [key in `conformations${AnyTree['tableName']}`]: Conformations; + } & { + readonly [key in `definition${AnyTree['tableName']}`]: number; + } & { + readonly [key in `focusPath${AnyTree['tableName']}`]: RA; } & { readonly hideEmptyNodes: boolean; readonly isSplit: boolean;