Spaces:
Running
Running
render equal to False are added
Browse files
app.py
CHANGED
@@ -135,7 +135,7 @@ class RowLayout(LayoutBase):
|
|
135 |
def __init__(self, name: str) -> None:
|
136 |
super().__init__()
|
137 |
|
138 |
-
self.main_layout = Row()
|
139 |
|
140 |
self.global_children_dict[name] = self.main_layout
|
141 |
|
@@ -144,7 +144,7 @@ class ColumnLayout(LayoutBase):
|
|
144 |
def __init__(self, name: str) -> None:
|
145 |
super().__init__()
|
146 |
|
147 |
-
self.main_layout = Column()
|
148 |
|
149 |
self.global_children_dict[name] = self.main_layout
|
150 |
|
@@ -153,7 +153,7 @@ class TabLayout(LayoutBase):
|
|
153 |
def __init__(self, name: str) -> None:
|
154 |
super().__init__()
|
155 |
|
156 |
-
self.main_layout = Tab(label=name)
|
157 |
|
158 |
self.global_children_dict[name] = self.main_layout
|
159 |
|
|
|
135 |
def __init__(self, name: str) -> None:
|
136 |
super().__init__()
|
137 |
|
138 |
+
self.main_layout = Row(render=False)
|
139 |
|
140 |
self.global_children_dict[name] = self.main_layout
|
141 |
|
|
|
144 |
def __init__(self, name: str) -> None:
|
145 |
super().__init__()
|
146 |
|
147 |
+
self.main_layout = Column(render=False)
|
148 |
|
149 |
self.global_children_dict[name] = self.main_layout
|
150 |
|
|
|
153 |
def __init__(self, name: str) -> None:
|
154 |
super().__init__()
|
155 |
|
156 |
+
self.main_layout = Tab(label=name, render=False)
|
157 |
|
158 |
self.global_children_dict[name] = self.main_layout
|
159 |
|