fix melt and boil col

This commit is contained in:
2025-08-20 10:45:32 +08:00
parent cddd5d7e3b
commit f1f71bcc4b

View File

@ -775,13 +775,13 @@ def compound_search_page():
else:
st.warning("未找到熔点数据")
with col2:
st.subheader("沸点")
if compound.boiling_point:
for bp in compound.boiling_point:
st.write(f"{bp}")
else:
st.warning("未找到沸点数据")
with col2:
st.subheader("沸点")
if compound.boiling_point:
for bp in compound.boiling_point:
st.write(f"{bp}")
else:
st.warning("未找到沸点数据")
# 计算器
st.markdown("---")