Skip to content

Commit

Permalink
fix: wide mode for AIND data access playground
Browse files Browse the repository at this point in the history
  • Loading branch information
hanhou committed Aug 9, 2024
1 parent a39e626 commit 123615f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions code/pages/3_AIND data access playground.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,18 @@
import streamlit as st
from streamlit_dynamic_filters import DynamicFilters

try:
st.set_page_config(layout="wide",
page_title='Foraging behavior browser',
page_icon=':mouse2:',
menu_items={
'Report a bug': "https://github.com/hanhou/foraging-behavior-browser/issues",
'About': "Github repo: https://github.com/hanhou/foraging-behavior-browser/"
}
)
except:
pass

@st.cache_data
def load_data():
df = fetch_fip_data(client)
Expand Down

0 comments on commit 123615f

Please sign in to comment.