diff --git a/src/program.py b/src/program.py index 2d57917..3f1f1bd 100644 --- a/src/program.py +++ b/src/program.py @@ -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()