Skip to content

Commit

Permalink
chore: change case for upload selection (#19021)
Browse files Browse the repository at this point in the history
* chore: change case for upload selection

* fix label

(cherry picked from commit 299b5dc)
  • Loading branch information
pkdotson authored and villebro committed Apr 3, 2022
1 parent 8951e23 commit 073be5d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions superset-frontend/src/views/components/MenuRight.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const RightMenu = ({
icon: 'fa-database',
childs: [
{
label: t('Connect Database'),
label: t('Connect database'),
name: GlobalMenuDataOptions.DB_CONNECTION,
perm: true,
},
Expand All @@ -102,19 +102,19 @@ const RightMenu = ({
perm: HAS_GSHEETS_INSTALLED,
},
{
label: t('Upload a CSV'),
label: t('Upload CSV to database'),
name: 'Upload a CSV',
url: '/csvtodatabaseview/form',
perm: CSV_EXTENSIONS,
},
{
label: t('Upload a Columnar File'),
label: t('Upload columnar file to database'),
name: 'Upload a Columnar file',
url: '/columnartodatabaseview/form',
perm: COLUMNAR_EXTENSIONS,
},
{
label: t('Upload Excel'),
label: t('Upload Excel file to database'),
name: 'Upload Excel',
url: '/exceltodatabaseview/form',
perm: EXCEL_EXTENSIONS,
Expand Down

0 comments on commit 073be5d

Please sign in to comment.