Spaces:
Running
Running
Your Name commited on
Commit Β·
c080da9
1
Parent(s): f3e970d
made some changes in code
Browse files
app.py
CHANGED
|
@@ -205,16 +205,16 @@ st.markdown(
|
|
| 205 |
st.divider()
|
| 206 |
|
| 207 |
with st.sidebar:
|
| 208 |
-
st.header("
|
| 209 |
|
| 210 |
# ββ Quick fill buttons ββββββββββββββββββββββββββββββββ
|
| 211 |
st.markdown("**Try these:**")
|
| 212 |
col1, col2 = st.columns(2)
|
| 213 |
with col1:
|
| 214 |
-
if st.button("
|
| 215 |
st.session_state["prefill_url"] = "https://github.com/octocat/Spoon-Knife"
|
| 216 |
with col2:
|
| 217 |
-
if st.button("
|
| 218 |
st.session_state["prefill_url"] = "https://github.com/pallets/flask"
|
| 219 |
|
| 220 |
# ββ URL input βββββββββββββββββββββββββββββββββββββββββ
|
|
@@ -228,7 +228,7 @@ with st.sidebar:
|
|
| 228 |
# ββ Load button βββββββββββββββββββββββββββββββββββββββ
|
| 229 |
if github_url:
|
| 230 |
if st.button(
|
| 231 |
-
"
|
| 232 |
use_container_width=True,
|
| 233 |
type="primary"
|
| 234 |
):
|
|
|
|
| 205 |
st.divider()
|
| 206 |
|
| 207 |
with st.sidebar:
|
| 208 |
+
st.header(" Load Repository")
|
| 209 |
|
| 210 |
# ββ Quick fill buttons ββββββββββββββββββββββββββββββββ
|
| 211 |
st.markdown("**Try these:**")
|
| 212 |
col1, col2 = st.columns(2)
|
| 213 |
with col1:
|
| 214 |
+
if st.button("Spoon-Knife", use_container_width=True):
|
| 215 |
st.session_state["prefill_url"] = "https://github.com/octocat/Spoon-Knife"
|
| 216 |
with col2:
|
| 217 |
+
if st.button("Flask", use_container_width=True):
|
| 218 |
st.session_state["prefill_url"] = "https://github.com/pallets/flask"
|
| 219 |
|
| 220 |
# ββ URL input βββββββββββββββββββββββββββββββββββββββββ
|
|
|
|
| 228 |
# ββ Load button βββββββββββββββββββββββββββββββββββββββ
|
| 229 |
if github_url:
|
| 230 |
if st.button(
|
| 231 |
+
"Load & Index",
|
| 232 |
use_container_width=True,
|
| 233 |
type="primary"
|
| 234 |
):
|