Skip to content

Commit

Permalink
Fix bug on drilldown
Browse files Browse the repository at this point in the history
  • Loading branch information
meomancer committed Jul 31, 2024
1 parent dd3d260 commit 5663540
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ def get(self, request, slug, concept_uuid):
date_format = rt_config[f'{related_table.id}']['date_format']
except KeyError:
pass
values = related_table.data_with_query(
values, has_next = related_table.data_with_query(
reference_layer_uuid=reference_layer.identifier,
geo_field=dashboard_related.geography_code_field_name,
geo_type=dashboard_related.geography_code_type,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def last_update(self):
get(name='date_format').value
except DashboardIndicatorLayerConfig.DoesNotExist:
date_format = None
data = dil_related_table.related_table.data_with_query(
data, has_next = dil_related_table.related_table.data_with_query(
reference_layer_uuid=self.dashboard.reference_layer.identifier,
geo_field=dashboard_related_table.geography_code_field_name,
geo_type=dashboard_related_table.geography_code_type,
Expand Down

0 comments on commit 5663540

Please sign in to comment.