Skip to content

Commit

Permalink
Fix bug in question node filter
Browse files Browse the repository at this point in the history
  • Loading branch information
subinasr committed Sep 28, 2023
1 parent 760c341 commit e0353fc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions apps/qbank/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class QberMetaQuestionFilterMixin:
data_collection_methods: list[QberDataCollectionMethodTypeEnum]

def filter(self, queryset):
queryset = super().filter(queryset)
if self.priority_levels:
queryset = queryset.filter(priority_level__in=self.priority_levels)
if self.enumerator_skills:
Expand Down

0 comments on commit e0353fc

Please sign in to comment.