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