From f1f71bcc4b7a2c1f48ac5e4e6b42d0b132440984 Mon Sep 17 00:00:00 2001 From: flt6 <1404262047@qq.com> Date: Wed, 20 Aug 2025 10:45:32 +0800 Subject: [PATCH] fix melt and boil col --- mw_tool/main.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/mw_tool/main.py b/mw_tool/main.py index 71bbf5a..3d6e2ed 100644 --- a/mw_tool/main.py +++ b/mw_tool/main.py @@ -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("---")