switched textarea for a label
This commit is contained in:
@@ -91,10 +91,10 @@ def nicegui_ui() -> None:
|
||||
timer = ui.timer(
|
||||
15, lambda: update_instance_table(ec2_resource, container, columns)
|
||||
)
|
||||
textarea = ui.textarea()
|
||||
label = ui.label()
|
||||
ui.slider(min=5, max=120, step=5, value=15).bind_value_to(
|
||||
timer, "interval"
|
||||
).bind_value_to(textarea)
|
||||
).bind_value_to(label, "text")
|
||||
ui.run()
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user