re-add missing schema generation exception
This commit is contained in:
parent
96d56b31ef
commit
4a1f805840
|
|
@ -91,7 +91,10 @@ class PathScopedMixin:
|
|||
|
||||
def do_filtering(self, *args, **kwargs):
|
||||
"""Do the actual filtering."""
|
||||
if not hasattr(self, 'filter_target_values'):
|
||||
if (
|
||||
not hasattr(self, 'filter_target_values')
|
||||
or InvenTree.ready.isGeneratingSchema()
|
||||
):
|
||||
return
|
||||
|
||||
# Throw out fields which are not requested
|
||||
|
|
|
|||
Loading…
Reference in New Issue