Skip to content

Commit

Permalink
Embellish sidebar navigation
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimergp committed Nov 4, 2024
1 parent 09962eb commit ce971d6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 6 additions & 2 deletions conda_metadata_app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,19 @@
pages = [
st.Page(
pages_dir / "main_page.py",
title="app",
title="conda metadata browser",
icon="📦",
default=True,
)
]

if AppConfig().enable_filepath_search:
pages.append(
st.Page(
pages_dir / "search_by_file_path_page.py",
title="Search By File Path",
title="Search by file path",
icon="🔎",
url_path="Search_by_file_path",
)
)

Expand Down
4 changes: 0 additions & 4 deletions conda_metadata_app/pages/main_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -769,10 +769,6 @@ def parse_url_params() -> tuple[dict[str, Any], bool]:


with st.sidebar:
st.title(
"conda metadata browser",
help="Web UI to browse the metadata of conda packages.",
)
with_broken = st.checkbox(
"Include artifacts marked broken",
value=False,
Expand Down

0 comments on commit ce971d6

Please sign in to comment.