We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 851691a + 5319a88 commit 8dbdc92Copy full SHA for 8dbdc92
1 file changed
tuttle/app/core/views.py
@@ -448,6 +448,10 @@ def update_dropdown_items(self, items: List[str]):
448
def update_value(self, new_value: str):
449
self.drop_down.value = new_value
450
self.drop_down.error_text = None
451
+ try:
452
+ self.update()
453
+ except RuntimeError:
454
+ pass # control not yet mounted
455
456
@property
457
def value(self):
0 commit comments