Removed bars
Browse files
app.py
CHANGED
|
@@ -186,7 +186,7 @@ demo = gr.Blocks(css=css)
|
|
| 186 |
|
| 187 |
def changing(inVal, outBox):
|
| 188 |
if inVal:
|
| 189 |
-
return
|
| 190 |
else:
|
| 191 |
outBox.value = "Select Dropdown"
|
| 192 |
|
|
|
|
| 186 |
|
| 187 |
def changing(inVal, outBox):
|
| 188 |
if inVal:
|
| 189 |
+
return gr.Button('Detect', interactive=True), gr.Button('Detect', interactive=True)
|
| 190 |
else:
|
| 191 |
outBox.value = "Select Dropdown"
|
| 192 |
|