Skip to content

Commit

Permalink
edits from pr comments
Browse files Browse the repository at this point in the history
  • Loading branch information
cdolfi authored and JamesKunstle committed Sep 27, 2023
1 parent db4958a commit 72ce86f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

warnings.filterwarnings("ignore")

dash.register_page(__name__, path="/contributors/type")
dash.register_page(__name__, path="/contributors/behavior")

layout = dbc.Container(
[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

warnings.filterwarnings("ignore")

dash.register_page(__name__, path="/contributors/action")
dash.register_page(__name__, path="/contributors/contribution_types")

layout = dbc.Container(
[
Expand Down
6 changes: 4 additions & 2 deletions pages/index/index_layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,10 @@
dbc.NavLink("Contributions", href="/contributions", active="exact"),
dbc.DropdownMenu(
[
dbc.DropdownMenuItem("By Action", href="/contributors/action"),
dbc.DropdownMenuItem("By Type", href="/contributors/type"),
dbc.DropdownMenuItem("Behavior", href="/contributors/behavior"),
dbc.DropdownMenuItem(
"Contribution Types", href="/contributors/contribution_types"
),
],
label="Contributors",
nav=True,
Expand Down
2 changes: 1 addition & 1 deletion pages/welcome/sections/general_section.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
html.H2("Contributors"),
html.P(
"""
Track trends based on contributors, broken down by ...
Track trends based on contributors, broken down by behavior and contribution types
"""
),
],
Expand Down

0 comments on commit 72ce86f

Please sign in to comment.