Spaces:
Sleeping
Sleeping
Fixing bug
Browse files
app.py
CHANGED
|
@@ -27,7 +27,8 @@ colors, ace_theme = apply_theme()
|
|
| 27 |
gen, bot = st.columns((2, 1), gap="large")
|
| 28 |
with gen:
|
| 29 |
st.subheader("Editor")
|
| 30 |
-
|
|
|
|
| 31 |
|
| 32 |
with bot:
|
| 33 |
st.subheader("Code Assistant")
|
|
|
|
| 27 |
gen, bot = st.columns((2, 1), gap="large")
|
| 28 |
with gen:
|
| 29 |
st.subheader("Editor")
|
| 30 |
+
editor_key = f"editor_{selected_lang}"
|
| 31 |
+
render_code_editor(selected_lang, ace_theme, editor_key)
|
| 32 |
|
| 33 |
with bot:
|
| 34 |
st.subheader("Code Assistant")
|