Hot fix
Browse files
app.py
CHANGED
@@ -271,7 +271,7 @@ if __name__ == "__main__":
|
|
271 |
col1, col2 = st.columns([2, 1])
|
272 |
st.markdown("<br>", unsafe_allow_html=True)
|
273 |
col1.write(f"> `IN[{i+1}]`")
|
274 |
-
show_panel = col2.checkbox("Show cell config panel", key="sql")
|
275 |
key = f"sql{i}"
|
276 |
sql = code_editor("sql", hint, show_panel=show_panel, key=key)
|
277 |
if sql:
|
|
|
271 |
col1, col2 = st.columns([2, 1])
|
272 |
st.markdown("<br>", unsafe_allow_html=True)
|
273 |
col1.write(f"> `IN[{i+1}]`")
|
274 |
+
show_panel = col2.checkbox("Show cell config panel", key=f"sql{i}")
|
275 |
key = f"sql{i}"
|
276 |
sql = code_editor("sql", hint, show_panel=show_panel, key=key)
|
277 |
if sql:
|