Spaces:
Runtime error
Runtime error
Commit
·
e8898f0
1
Parent(s):
c5c6018
Update nav header
Browse files- multiapp.py +2 -1
multiapp.py
CHANGED
|
@@ -10,8 +10,9 @@ class MultiApp:
|
|
| 10 |
self.apps.append({"title": title, "function": func})
|
| 11 |
|
| 12 |
def run(self):
|
|
|
|
| 13 |
logo = st.sidebar.image("./misc/mvqa-logo-3-white.png")
|
| 14 |
-
st.sidebar.header("
|
| 15 |
app = st.sidebar.radio(
|
| 16 |
"", self.apps, format_func=lambda app: app["title"]
|
| 17 |
)
|
|
|
|
| 10 |
self.apps.append({"title": title, "function": func})
|
| 11 |
|
| 12 |
def run(self):
|
| 13 |
+
st.title("Multilingual VQA")
|
| 14 |
logo = st.sidebar.image("./misc/mvqa-logo-3-white.png")
|
| 15 |
+
st.sidebar.header("Go To:")
|
| 16 |
app = st.sidebar.radio(
|
| 17 |
"", self.apps, format_func=lambda app: app["title"]
|
| 18 |
)
|