Browse Source

fix element render issue (#1011)

Sheldon 2 năm trước cách đây
mục cha
commit
c1235d4fd1
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      pynecone/el/element.py

+ 1 - 0
pynecone/el/element.py

@@ -30,6 +30,7 @@ class Element(Component):
             ).set(
                 contents=str(tag.contents),
                 children=[child.render() for child in self.children],
+                props=tag.format_props(),
             )
         )