Commit ·
d7d3ce3
1
Parent(s): f479ad8
Update app.py
Browse files
app.py
CHANGED
|
@@ -66,6 +66,8 @@ class Application:
|
|
| 66 |
names = [row["name"] for row in config]
|
| 67 |
files = [row["file"] for row in config]
|
| 68 |
|
|
|
|
|
|
|
| 69 |
selected = st.selectbox("Load workflow", ["--"] + names)
|
| 70 |
if selected != "--":
|
| 71 |
index = [x for x, name in enumerate(names) if name == selected][0]
|
|
|
|
| 66 |
names = [row["name"] for row in config]
|
| 67 |
files = [row["file"] for row in config]
|
| 68 |
|
| 69 |
+
print(st.experimental_get_query_params())
|
| 70 |
+
|
| 71 |
selected = st.selectbox("Load workflow", ["--"] + names)
|
| 72 |
if selected != "--":
|
| 73 |
index = [x for x, name in enumerate(names) if name == selected][0]
|