From c12dcba62b53f20de6c9e6da6127391d06527c30 Mon Sep 17 00:00:00 2001 From: Elijah Date: Wed, 23 Oct 2024 13:11:12 +0000 Subject: [PATCH] list partial fix --- reflex/components/radix/themes/layout/list.py | 2 +- reflex/components/radix/themes/layout/list.pyi | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/reflex/components/radix/themes/layout/list.py b/reflex/components/radix/themes/layout/list.py index 81b2b7ff2..daf7f9a70 100644 --- a/reflex/components/radix/themes/layout/list.py +++ b/reflex/components/radix/themes/layout/list.py @@ -100,7 +100,7 @@ class UnorderedList(BaseList, Ul): tag = "ul" # The style of the list. - list_style_type: LiteralListStyleTypeOrdered = "disc" + list_style_type: LiteralListStyleTypeUnordered = "disc" @classmethod def create( diff --git a/reflex/components/radix/themes/layout/list.pyi b/reflex/components/radix/themes/layout/list.pyi index 3e9448248..ba38564ec 100644 --- a/reflex/components/radix/themes/layout/list.pyi +++ b/reflex/components/radix/themes/layout/list.pyi @@ -106,7 +106,7 @@ class UnorderedList(BaseList, Ul): def create( # type: ignore cls, *children, - list_style_type: Optional[LiteralListStyleTypeOrdered] = None, + list_style_type: Optional[LiteralListStyleTypeUnordered] = None, items: Optional[Union[Iterable, Union[Iterable, Var[Iterable]]]] = None, access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None, auto_capitalize: Optional[