This is an automated email from the ASF dual-hosted git repository.
graceguo 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 29dd989 [dashboard] increase tab count limit (#9640)
29dd989 is described below
commit 29dd9894838fccb014d870b07cf0a14e0919dd13
Author: Grace Guo <[email protected]>
AuthorDate: Fri Apr 24 13:41:33 2020 -0700
[dashboard] increase tab count limit (#9640)
---
superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx
b/superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx
index ce565fe..019a0af 100644
--- a/superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx
+++ b/superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx
@@ -35,7 +35,7 @@ import { TAB_TYPE } from '../../util/componentTypes';
import { LOG_ACTIONS_SELECT_DASHBOARD_TAB } from '../../../logger/LogUtils';
const NEW_TAB_INDEX = -1;
-const MAX_TAB_COUNT = 7;
+const MAX_TAB_COUNT = 10;
const propTypes = {
id: PropTypes.string.isRequired,