Skip to content

Commit

Permalink
[app] Fix, manage menu should be before charts (apache#8945)
Browse files Browse the repository at this point in the history
  • Loading branch information
dpgaspar committed Jan 10, 2020
1 parent 3bedee7 commit 497c3e5
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions superset/app.py
Expand Up @@ -209,14 +209,6 @@ def init_views(self) -> None:
category_label=__("Manage"),
category_icon="",
)
appbuilder.add_view(
SliceModelView,
"Charts",
label=__("Charts"),
icon="fa-bar-chart",
category="",
category_icon="",
)
appbuilder.add_view(
DatabaseView,
"Databases",
Expand All @@ -226,6 +218,14 @@ def init_views(self) -> None:
category_label=__("Sources"),
category_icon="fa-database",
)
appbuilder.add_view(
SliceModelView,
"Charts",
label=__("Charts"),
icon="fa-bar-chart",
category="",
category_icon="",
)
appbuilder.add_view(
DashboardModelView,
"Dashboards",
Expand Down

0 comments on commit 497c3e5

Please sign in to comment.