GuglielmoTor commited on
Commit
c679528
·
verified ·
1 Parent(s): 8771c6e

Update ui_generators.py

Browse files
Files changed (1) hide show
  1. 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"### {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.
 
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.