Spaces:
Sleeping
Sleeping
Update app/internal_loads.py
Browse files- app/internal_loads.py +4 -4
app/internal_loads.py
CHANGED
@@ -63,7 +63,9 @@ def display_internal_loads_page():
|
|
63 |
|
64 |
for i, load_type in enumerate(LOAD_TYPES):
|
65 |
with tabs[i]:
|
66 |
-
if load_type == "
|
|
|
|
|
67 |
display_people_tab()
|
68 |
elif load_type == "Lighting":
|
69 |
display_lighting_tab()
|
@@ -71,9 +73,7 @@ def display_internal_loads_page():
|
|
71 |
display_equipment_tab()
|
72 |
elif load_type == "Ventilation & Infiltration":
|
73 |
display_ventilation_infiltration_tab()
|
74 |
-
|
75 |
-
display_schedules_tab()
|
76 |
-
|
77 |
# Navigation buttons
|
78 |
col1, col2 = st.columns(2)
|
79 |
|
|
|
63 |
|
64 |
for i, load_type in enumerate(LOAD_TYPES):
|
65 |
with tabs[i]:
|
66 |
+
if load_type == "Schedules":
|
67 |
+
display_schedules_tab()
|
68 |
+
elif load_type == "People":
|
69 |
display_people_tab()
|
70 |
elif load_type == "Lighting":
|
71 |
display_lighting_tab()
|
|
|
73 |
display_equipment_tab()
|
74 |
elif load_type == "Ventilation & Infiltration":
|
75 |
display_ventilation_infiltration_tab()
|
76 |
+
|
|
|
|
|
77 |
# Navigation buttons
|
78 |
col1, col2 = st.columns(2)
|
79 |
|