You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by er...@apache.org on 2020/11/30 04:17:15 UTC

[incubator-superset] branch master updated: Change subtabs order for Data tab (#11834)

This is an automated email from the ASF dual-hosted git repository.

erikrit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git


The following commit(s) were added to refs/heads/master by this push:
     new e974b0b  Change subtabs order for Data tab (#11834)
e974b0b is described below

commit e974b0be0577f2c121ecbf29d9b3c86b7ec16e97
Author: Agata Stawarz <47...@users.noreply.github.com>
AuthorDate: Mon Nov 30 05:16:47 2020 +0100

    Change subtabs order for Data tab (#11834)
---
 superset-frontend/src/views/CRUD/data/common.ts | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/superset-frontend/src/views/CRUD/data/common.ts b/superset-frontend/src/views/CRUD/data/common.ts
index 4f89b5d..1134277 100644
--- a/superset-frontend/src/views/CRUD/data/common.ts
+++ b/superset-frontend/src/views/CRUD/data/common.ts
@@ -23,18 +23,18 @@ export const commonMenuData = {
   name: t('Data'),
   tabs: [
     {
-      name: 'Datasets',
-      label: t('Datasets'),
-      url: '/tablemodelview/list/',
-      usesRouter: true,
-    },
-    {
       name: 'Databases',
       label: t('Databases'),
       url: '/databaseview/list/',
       usesRouter: true,
     },
     {
+      name: 'Datasets',
+      label: t('Datasets'),
+      url: '/tablemodelview/list/',
+      usesRouter: true,
+    },
+    {
       name: 'Saved Queries',
       label: t('Saved Queries'),
       url: '/savedqueryview/list/',