Fix inaccurate total_children_count property in modals

This commit is contained in:
Sacul
2025-10-28 19:51:15 +08:00
committed by GitHub
parent 09f748d48f
commit 8f2cb60700

View File

@@ -139,3 +139,8 @@ class Label(Item[V]):
def is_dispatchable(self) -> bool:
return False
@property
def _total_count(self) -> int:
# Count the component and ourselves
return 2