Spaces:
Sleeping
Sleeping
Update app/materials_library.py
Browse files- app/materials_library.py +1 -1
app/materials_library.py
CHANGED
@@ -328,7 +328,7 @@ def display_materials_tab(material_library: MaterialLibrary):
|
|
328 |
cols[2].write("**U-Value (W/m虏路K)**")
|
329 |
cols[3].write("**Preview**")
|
330 |
cols[4].write("**Clone**")
|
331 |
-
for material in
|
332 |
cols = st.columns([2, 1, 1, 1, 1])
|
333 |
cols[0].write(material.name)
|
334 |
cols[1].write(material.get_thermal_mass())
|
|
|
328 |
cols[2].write("**U-Value (W/m虏路K)**")
|
329 |
cols[3].write("**Preview**")
|
330 |
cols[4].write("**Clone**")
|
331 |
+
for material in library_materials:
|
332 |
cols = st.columns([2, 1, 1, 1, 1])
|
333 |
cols[0].write(material.name)
|
334 |
cols[1].write(material.get_thermal_mass())
|