Fixing password type textbox.
Browse files
app.py
CHANGED
@@ -41,7 +41,7 @@ def delete_data(secret):
|
|
41 |
else:
|
42 |
return "No data found"
|
43 |
|
44 |
-
secret_input = gr.
|
45 |
|
46 |
# Create Gradio interface
|
47 |
iface1 = gr.Interface(
|
|
|
41 |
else:
|
42 |
return "No data found"
|
43 |
|
44 |
+
secret_input = gr.Textbox(label="Secret", type="password")
|
45 |
|
46 |
# Create Gradio interface
|
47 |
iface1 = gr.Interface(
|