From a91d6c49d81440d8ace1bb20d2eda4f656cb3bc1 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Thu, 1 Feb 2024 12:35:24 -0500 Subject: =?UTF-8?q?=F0=9F=94=80=20Fix=20`autofocus`=20property=20name=20(#?= =?UTF-8?q?43)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/lustre/attribute.gleam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lustre/attribute.gleam b/src/lustre/attribute.gleam index 163ccf4..0ae289c 100644 --- a/src/lustre/attribute.gleam +++ b/src/lustre/attribute.gleam @@ -143,7 +143,7 @@ pub fn autocomplete(name: String) -> Attribute(msg) { /// pub fn autofocus(should_autofocus: Bool) -> Attribute(msg) { - property("autoFocus", should_autofocus) + property("autofocus", should_autofocus) } /// -- cgit v1.2.3