Skip to content

Commit

Permalink
Merge branch 'release/0.1.12' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvw committed Aug 22, 2024
2 parents 7fc6365 + c0d5ba0 commit 4998bdb
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ def get_list_display(self, request):
def get_list_filter(self, request):
list_filter = super().get_list_filter(request)
list_filter = list(list_filter)
list_filter.insert(0, self.note_status_list_filter)
if self.include_note_column:
list_filter.insert(0, self.note_status_list_filter)
return tuple(list_filter)

def get_note_model_obj_or_raise(self, obj=None):
Expand Down

0 comments on commit 4998bdb

Please sign in to comment.