From fef1db0bdac974f3a2c7eed6385307e79da7b9ee Mon Sep 17 00:00:00 2001 From: ziv Date: Sun, 5 May 2024 21:28:43 +0300 Subject: [PATCH] Changing involved_yishuv fields to accident_yishuv fields. --- .../killed_and_injured_count_per_age_group_widget_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_widget_utils.py b/anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_widget_utils.py index a92dc562..fd9c5539 100644 --- a/anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_widget_utils.py +++ b/anyway/widgets/all_locations_widgets/killed_and_injured_count_per_age_group_widget_utils.py @@ -148,5 +148,5 @@ def adapt_location_fields_to_involve_table(filter: dict) -> dict: res = copy.copy(filter) for field in ["yishuv_name", "yishuv_symbol"]: if field in res: - res[f"involve_{field}"] = res.pop(field) + res[f"accident_{field}"] = res.pop(field) return res