Skip to content

Commit

Permalink
Fixed bugs in Handshape List View, selected datasets
Browse files Browse the repository at this point in the history
  • Loading branch information
susanodd committed Dec 19, 2024
1 parent e9ed9d0 commit c5f3864
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion signbank/dictionary/adminviews.py
Original file line number Diff line number Diff line change
Expand Up @@ -3466,7 +3466,8 @@ def get_context_data(self, **kwargs):

context['handshapefieldchoicecount'] = Handshape.objects.filter(machine_value__gt=1).count()

context['selected_datasets'] = get_selected_datasets(request)
selected_datasets = get_selected_datasets(self.request)
context['selected_datasets'] = selected_datasets

dataset_languages = get_dataset_languages(selected_datasets)
context['dataset_languages'] = dataset_languages
Expand Down

0 comments on commit c5f3864

Please sign in to comment.