Skip to content

Commit cef093e

Browse files
committed
Fix for is_module_fully_rendered
1 parent 5384dd6 commit cef093e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plain_modules.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ def is_module_fully_rendered(self) -> bool:
314314
last_rendered_module_name is not None
315315
and last_rendered_module_name == self.module_name
316316
and last_rendered_frid is not None
317-
and last_rendered_frid == frids[-1]
317+
and (last_rendered_frid == frids[-1] or int(last_rendered_frid) >= int(frids[-1]))
318318
):
319319
return True
320320

0 commit comments

Comments
 (0)