Spaces:
Sleeping
Sleeping
fixed temp select bug
Browse files
app.py
CHANGED
|
@@ -334,7 +334,7 @@ if st.session_state["experiment"] is not None:
|
|
| 334 |
temp_auto = st.selectbox("Temperature Automation", ["Record Temp Only", "Heat To Temp"], placeholder="UNKNOWN")
|
| 335 |
with st.form("temperature_form"):
|
| 336 |
if temp_auto == "Heat To Temp":
|
| 337 |
-
temp = st.slider("Temperature", min_value=0
|
| 338 |
cols = st.columns(2)
|
| 339 |
with cols[0]:
|
| 340 |
temp_submit = st.form_submit_button("Restart Temperature Automation")
|
|
|
|
| 334 |
temp_auto = st.selectbox("Temperature Automation", ["Record Temp Only", "Heat To Temp"], placeholder="UNKNOWN")
|
| 335 |
with st.form("temperature_form"):
|
| 336 |
if temp_auto == "Heat To Temp":
|
| 337 |
+
temp = st.slider("Temperature", min_value=0, max_value=60, step=1, value=30)
|
| 338 |
cols = st.columns(2)
|
| 339 |
with cols[0]:
|
| 340 |
temp_submit = st.form_submit_button("Restart Temperature Automation")
|