0
0
forked from flt/tools

fix melt and boil col

This commit is contained in:
2025-08-20 10:47:17 +08:00
parent f1f71bcc4b
commit 9d3c263683

View File

@ -769,11 +769,11 @@ def compound_search_page():
with col1:
st.subheader("熔点")
if compound.melting_point:
for mp in compound.melting_point:
st.write(f"{mp}")
else:
st.warning("未找到熔点数据")
if compound.melting_point:
for mp in compound.melting_point:
st.write(f"{mp}")
else:
st.warning("未找到熔点数据")
with col2:
st.subheader("沸点")