fix: missing flag
This commit is contained in:
parent
e5a9e5bf74
commit
3264fb0f12
1 changed files with 1 additions and 1 deletions
|
|
@ -618,7 +618,7 @@ class Document(BaseDocument):
|
|||
|
||||
def reset_virtual_child_tables(self):
|
||||
"""Reset virtual child tables so that they are reloaded next time"""
|
||||
for df in self.meta.get_table_fields():
|
||||
for df in self.meta.get_table_fields(ignore_virtual=False):
|
||||
if df.is_virtual:
|
||||
self.__dict__.pop(df.fieldname, None)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue