Skip to content

Commit

Permalink
fix: title case in menus (#17135)
Browse files Browse the repository at this point in the history
Let's stick to title case in the navbar. This tackles two entries that
have been triggering my OCD
  • Loading branch information
mistercrunch authored and AAfghahi committed Jan 10, 2022
1 parent 298f304 commit c3b5e09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions superset/initialization/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ def init_views(self) -> None:
appbuilder.add_view(
RowLevelSecurityFiltersModelView,
"Row Level Security",
label=__("Row level security"),
label=__("Row Level Security"),
category="Security",
category_label=__("Security"),
icon="fa-lock",
Expand Down Expand Up @@ -376,7 +376,7 @@ def init_views(self) -> None:
)
appbuilder.add_link(
"Upload a Columnar file",
label=__("Upload a Columnar file"),
label=__("Upload a Columnar File"),
href="/columnartodatabaseview/form",
icon="fa-upload",
category="Data",
Expand Down

0 comments on commit c3b5e09

Please sign in to comment.