diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-01-07 11:05:42 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-01-07 11:05:42 +0100 |
commit | 39d925073616d842d5c2dfd6ac0974dddf252677 (patch) | |
tree | be0f5188bb7b2f2ca57f6186f9241ab6a1972734 | |
parent | e63bae92d37abdfd36882346b0c948d8e842ca0c (diff) | |
download | Ishtar-39d925073616d842d5c2dfd6ac0974dddf252677.tar.bz2 Ishtar-39d925073616d842d5c2dfd6ac0974dddf252677.zip |
🐛 fix generation of cached_label for base finds
-rw-r--r-- | archaeological_finds/models_finds.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_finds/models_finds.py b/archaeological_finds/models_finds.py index 9a287f516..464076caf 100644 --- a/archaeological_finds/models_finds.py +++ b/archaeological_finds/models_finds.py @@ -614,7 +614,7 @@ class BaseFind( ) history = HistoricalRecords() RELATED_POST_PROCESS = ["find"] - CACHED_LABELS = ["cache_short_id", "cache_complete_id"] + CACHED_LABELS = ["cache_short_id", "cache_complete_id", "cached_label"] CACHED_COMPLETE_ID = "cache_complete_id" PARENT_ONLY_SEARCH_VECTORS = ["context_record"] BASE_SEARCH_VECTORS = [ |