From 5a15199a3a4e1d1466f134e2f32507f62b6e4c86 Mon Sep 17 00:00:00 2001 From: Fabio Pliger Date: Wed, 8 Nov 2023 13:09:15 -0600 Subject: [PATCH] Fix Click test example (#1849) * fix type in div id * add types --- pyscript.core/test/click.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyscript.core/test/click.html b/pyscript.core/test/click.html index 4e86647c..576c87b9 100644 --- a/pyscript.core/test/click.html +++ b/pyscript.core/test/click.html @@ -17,7 +17,7 @@ def on_click(event): print(f"Hello from Python! {dt.now()}") - display(f"Hello from Python! {dt.now()}", append=False, target='eresult') + display(f"Hello from Python! {dt.now()}", append=False, target='result') add_event_listener(element, "click", on_click)