1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Call prepare_value() to avoid passing model instances directly to the filterset

This commit is contained in:
Jeremy Stretch
2020-02-24 09:31:31 -05:00
parent 1a997610c7
commit 25d126d4ff

View File

@ -572,7 +572,7 @@ class DynamicModelChoiceMixin:
# Modify the QuerySet of the field before we return it. Limit choices to any data already bound: Options
# will be populated on-demand via the APISelect widget.
data = bound_field.data or bound_field.initial
data = self.prepare_value(bound_field.data or bound_field.initial)
if data:
filter = self.filter(field_name=self.to_field_name or 'pk', queryset=self.queryset)
self.queryset = filter.filter(self.queryset, data)