Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -137,13 +137,12 @@ with gr.Blocks(
|
|
| 137 |
) as demo:
|
| 138 |
gr.Markdown("# Time Entry Improvement")
|
| 139 |
with gr.Row():
|
| 140 |
-
|
| 141 |
-
|
| 142 |
-
|
| 143 |
-
with gr.
|
| 144 |
-
|
| 145 |
-
|
| 146 |
-
magic_button = gr.Button("Magic Button")
|
| 147 |
|
| 148 |
|
| 149 |
magic_button.click(
|
|
|
|
| 137 |
) as demo:
|
| 138 |
gr.Markdown("# Time Entry Improvement")
|
| 139 |
with gr.Row():
|
| 140 |
+
text_area = gr.Textbox(label="Your Text", lines=5)
|
| 141 |
+
previous_text_area = gr.Textbox(label="Previous Text", lines=5, visible=False)
|
| 142 |
+
|
| 143 |
+
with gr.Row(elem_classes="centered"):
|
| 144 |
+
category_label = gr.Markdown("", visible=False)
|
| 145 |
+
magic_button = gr.Button("Magic Button")
|
|
|
|
| 146 |
|
| 147 |
|
| 148 |
magic_button.click(
|