Update app.py
Browse files
app.py
CHANGED
@@ -312,15 +312,17 @@ with gr.Blocks(js = js_func) as demo:
|
|
312 |
)
|
313 |
copy_button.click(
|
314 |
copy_to_clipboard,
|
315 |
-
inputs=
|
316 |
-
outputs=message_output
|
|
|
317 |
)
|
318 |
|
319 |
# Gắn sự kiện click cho nút hủy sao chép
|
320 |
cancel_button.click(
|
321 |
cancel_copy,
|
322 |
inputs=None,
|
323 |
-
outputs=
|
|
|
324 |
)
|
325 |
def notify_download():
|
326 |
return gr.Info("Không hỗ trợ tính năng này trong bản demo. Vui lòng liên hệ tác giả để biết chi tiết!", duration=3)
|
@@ -329,7 +331,7 @@ with gr.Blocks(js = js_func) as demo:
|
|
329 |
download_button.click(
|
330 |
fn=notify_download,
|
331 |
inputs=None, # Không cần inputs
|
332 |
-
outputs=message_output # Chỉ hiển thị thông báo
|
333 |
show_progress=False
|
334 |
)
|
335 |
|
|
|
312 |
)
|
313 |
copy_button.click(
|
314 |
copy_to_clipboard,
|
315 |
+
inputs=None,
|
316 |
+
outputs=message_output,
|
317 |
+
show_progress=False
|
318 |
)
|
319 |
|
320 |
# Gắn sự kiện click cho nút hủy sao chép
|
321 |
cancel_button.click(
|
322 |
cancel_copy,
|
323 |
inputs=None,
|
324 |
+
outputs=message_output,
|
325 |
+
show_progress=False
|
326 |
)
|
327 |
def notify_download():
|
328 |
return gr.Info("Không hỗ trợ tính năng này trong bản demo. Vui lòng liên hệ tác giả để biết chi tiết!", duration=3)
|
|
|
331 |
download_button.click(
|
332 |
fn=notify_download,
|
333 |
inputs=None, # Không cần inputs
|
334 |
+
outputs=message_output, # Chỉ hiển thị thông báo
|
335 |
show_progress=False
|
336 |
)
|
337 |
|