From 93ac68511d11d2d946009304da6dd28566043a78 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Tue, 24 Sep 2024 17:43:26 -0500 Subject: [PATCH] HTML does not require the "checked" attribute have a value --- src/pgwui_core/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pgwui_core/constants.py b/src/pgwui_core/constants.py index 220f4e1..539b37e 100644 --- a/src/pgwui_core/constants.py +++ b/src/pgwui_core/constants.py @@ -37,5 +37,5 @@ TAB = 'tab' # (That these exist is a sign that we're not really utilizing our toolset.) CSV_VALUE = CSV TAB_VALUE = TAB -CHECKED = 'checked="checked"' +CHECKED = 'checked' UNCHECKED = '' -- 2.34.1