Spaces:
Running
Running
top_textbox variable's interactive value is set to False
Browse files
app.py
CHANGED
@@ -206,7 +206,7 @@ class SecondTab(TabLayout):
|
|
206 |
|
207 |
self.column = ColumnLayout(name="second tab column layout")
|
208 |
|
209 |
-
self.top_textbox = Textbox(value="Top Textbox", interactive=
|
210 |
self.bottom_textbox = Textbox(value="Bottom Textbox", render=False)
|
211 |
|
212 |
self.column.add_component("top_textbox", self.top_textbox)
|
|
|
206 |
|
207 |
self.column = ColumnLayout(name="second tab column layout")
|
208 |
|
209 |
+
self.top_textbox = Textbox(value="Top Textbox", interactive=False, render=False)
|
210 |
self.bottom_textbox = Textbox(value="Bottom Textbox", render=False)
|
211 |
|
212 |
self.column.add_component("top_textbox", self.top_textbox)
|