drzg commited on
Commit
95dc284
·
1 Parent(s): f4c8e88

removing small text

Browse files
Files changed (1) hide show
  1. src/pages/data_collection.py +3 -7
src/pages/data_collection.py CHANGED
@@ -3041,11 +3041,7 @@ div.leaflet-container {background: #f2f2f3 !important;}
3041
  if cp_part: bot_components.append(cp_part)
3042
  top_text = " | ".join(top_components)
3043
  bot_text = " | ".join(bot_components)
3044
- # TEMP: Make labels very short for testing
3045
- # _label_centered(top_text, sx, inbound_top - 6, above=True)
3046
- # _label_centered(bot_text, sx, outbound_bottom + 6, above=False)
3047
- _label_centered("T", sx, inbound_top - 6, above=True) # Just show T for testing
3048
- _label_centered("T", sx, outbound_bottom + 6, above=False) # Just show T for testing
3049
 
3050
  # Seventh pass: draw sub-subprocess overlays for expanded subprocesses (LAST - on top of everything)
3051
  subprocess_map_expanded = st.session_state.get('subprocess_map_expanded', {})
@@ -3442,7 +3438,7 @@ div.leaflet-container {background: #f2f2f3 !important;}
3442
 
3443
  if all_stream_data:
3444
  df = pd.DataFrame(all_stream_data)
3445
- st.dataframe(df, use_container_width=True, hide_index=True)
3446
  else:
3447
  st.info("No streams found in this subprocess view")
3448
  else:
@@ -3513,7 +3509,7 @@ div.leaflet-container {background: #f2f2f3 !important;}
3513
 
3514
  if all_stream_data:
3515
  df = pd.DataFrame(all_stream_data)
3516
- st.dataframe(df, use_container_width=True, hide_index=True)
3517
  else:
3518
  st.info("No streams found in this sub-subprocess view")
3519
  break
 
3041
  if cp_part: bot_components.append(cp_part)
3042
  top_text = " | ".join(top_components)
3043
  bot_text = " | ".join(bot_components)
3044
+ # Labels removed - only arrows shown in subprocess view
 
 
 
 
3045
 
3046
  # Seventh pass: draw sub-subprocess overlays for expanded subprocesses (LAST - on top of everything)
3047
  subprocess_map_expanded = st.session_state.get('subprocess_map_expanded', {})
 
3438
 
3439
  if all_stream_data:
3440
  df = pd.DataFrame(all_stream_data)
3441
+ st.dataframe(df, width='stretch', hide_index=True)
3442
  else:
3443
  st.info("No streams found in this subprocess view")
3444
  else:
 
3509
 
3510
  if all_stream_data:
3511
  df = pd.DataFrame(all_stream_data)
3512
+ st.dataframe(df, width='stretch', hide_index=True)
3513
  else:
3514
  st.info("No streams found in this sub-subprocess view")
3515
  break