add missing comment form (#1081)

This commit is contained in:
Thomas Brandého 2023-05-25 18:52:57 +02:00 committed by GitHub
parent 3d8694cc26
commit e9ca1fd03b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -12,6 +12,7 @@ class Form(ChakraComponent):
tag = "Box"
# What the form renders to.
as_: Var[str] = "form" # type: ignore
def get_controlled_triggers(self) -> Dict[str, Dict]:

View File

@ -20,7 +20,7 @@ class Link(ChakraComponent):
# The text to display.
text: Var[str]
# What the link renders too.
# What the link renders to.
as_: Var[str] = "span" # type: ignore
# If true, the link will open in new tab.