Update app.py
Browse files
app.py
CHANGED
@@ -79,7 +79,8 @@ with gr.Blocks() as block:
|
|
79 |
textout = gr.Textbox(lines=2, interactive=True)
|
80 |
textout.update(lines=8, visible=True)
|
81 |
|
82 |
-
radio.change(fn=change_textbox, inputs=[radio, textin], outputs=
|
|
|
83 |
|
84 |
listFiles = gr.Button("List CSV and TXT File(s)")
|
85 |
readFile = gr.Button("Read File")
|
|
|
79 |
textout = gr.Textbox(lines=2, interactive=True)
|
80 |
textout.update(lines=8, visible=True)
|
81 |
|
82 |
+
radio.change(fn=change_textbox, inputs=[radio, textin], outputs=textout)
|
83 |
+
#radio.change(fn=change_textbox, inputs=[radio, textin], outputs=[textout, fileContent])
|
84 |
|
85 |
listFiles = gr.Button("List CSV and TXT File(s)")
|
86 |
readFile = gr.Button("Read File")
|