Spaces:
Running
Running
Update ui_generators.py
Browse files- ui_generators.py +1 -1
ui_generators.py
CHANGED
@@ -374,7 +374,7 @@ def build_analytics_tab_plot_area(plot_configs):
|
|
374 |
if current_section_name != last_rendered_section:
|
375 |
if current_section_name not in section_titles_map:
|
376 |
# Create the Markdown component for the section title
|
377 |
-
section_md_component = gr.Markdown(f"
|
378 |
section_titles_map[current_section_name] = section_md_component
|
379 |
logging.debug(f"Rendered and stored Markdown for section: {current_section_name}")
|
380 |
# No 'else' needed here for visibility, as it's handled by click handlers if sections are hidden/shown.
|
|
|
374 |
if current_section_name != last_rendered_section:
|
375 |
if current_section_name not in section_titles_map:
|
376 |
# Create the Markdown component for the section title
|
377 |
+
section_md_component = gr.Markdown(f"## {current_section_name}", visible=True)
|
378 |
section_titles_map[current_section_name] = section_md_component
|
379 |
logging.debug(f"Rendered and stored Markdown for section: {current_section_name}")
|
380 |
# No 'else' needed here for visibility, as it's handled by click handlers if sections are hidden/shown.
|