From 078d85091f62e13059a6f76a4c99427d126e8e1b Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Sat, 4 Feb 2023 17:32:47 -0500 Subject: [PATCH] fix typo in element id caused javascript exception --- scripts/images_history.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/images_history.py b/scripts/images_history.py index 267d061..7ff1612 100644 --- a/scripts/images_history.py +++ b/scripts/images_history.py @@ -708,7 +708,7 @@ def on_ui_tabs(): num_of_imgs_per_page = int(opts.images_history_page_columns * opts.images_history_page_rows) loads_files_num = int(opts.images_history_pages_perload * num_of_imgs_per_page) with gr.Blocks(analytics_enabled=False) as images_history: - with gr.Tabs(elem_id="images_history_tab)") as tabs: + with gr.Tabs(elem_id="images_history_tab") as tabs: for tab in tabs_list: with gr.Tab(tab): with gr.Blocks(analytics_enabled=False) :