Update app/streamlit_app.py
Browse files- app/streamlit_app.py +4 -4
app/streamlit_app.py
CHANGED
|
@@ -1048,15 +1048,15 @@ def main():
|
|
| 1048 |
col1, col2, col3 = st.columns([1, 2, 1])
|
| 1049 |
with col2:
|
| 1050 |
if app_manager.api_available:
|
| 1051 |
-
st.write(
|
| 1052 |
st.markdown(
|
| 1053 |
'<div class="success-message">🟢 API Service: Online</div>', unsafe_allow_html=True)
|
| 1054 |
-
st.write(
|
| 1055 |
else:
|
| 1056 |
-
st.write(
|
| 1057 |
st.markdown(
|
| 1058 |
'<div class="error-message">🔴 API Service: Offline</div>', unsafe_allow_html=True)
|
| 1059 |
-
st.write(
|
| 1060 |
|
| 1061 |
# Main content area
|
| 1062 |
tab1, tab2, tab3, tab4, tab5, tab6, tab7 = st.tabs([
|
|
|
|
| 1048 |
col1, col2, col3 = st.columns([1, 2, 1])
|
| 1049 |
with col2:
|
| 1050 |
if app_manager.api_available:
|
| 1051 |
+
st.write("")
|
| 1052 |
st.markdown(
|
| 1053 |
'<div class="success-message">🟢 API Service: Online</div>', unsafe_allow_html=True)
|
| 1054 |
+
st.write("")
|
| 1055 |
else:
|
| 1056 |
+
st.write("")
|
| 1057 |
st.markdown(
|
| 1058 |
'<div class="error-message">🔴 API Service: Offline</div>', unsafe_allow_html=True)
|
| 1059 |
+
st.write("")
|
| 1060 |
|
| 1061 |
# Main content area
|
| 1062 |
tab1, tab2, tab3, tab4, tab5, tab6, tab7 = st.tabs([
|