Hotfix: EcoAccount serializable
* fixes bug where EcoAccount model was not serializable due to changes in newer DAL version due to Django4
This commit is contained in:
parent
8132427c7c
commit
07b14f1b7f
@ -32,3 +32,9 @@ class EcoAccountAutocomplete(Select2QuerySetView):
|
||||
Q(title__icontains=self.q)
|
||||
).distinct()
|
||||
return qs
|
||||
|
||||
def get_result_label(self, result):
|
||||
return str(result)
|
||||
|
||||
def get_selected_result_label(self, result):
|
||||
return str(result)
|
||||
|
Loading…
Reference in New Issue
Block a user