azizalto commited on
Commit
3e9035a
·
1 Parent(s): e189738
Files changed (1) hide show
  1. app.py +1 -1
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: