mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
feat: AI-powered TypeScript migration framework with parallel processing (#35045)
Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: Mehmet Salih Yavuz <salih.yavuz@proton.me> Co-authored-by: Elizabeth Thompson <eschutho@gmail.com>
This commit is contained in:
committed by
GitHub
parent
076e477fd4
commit
ecb3ac68ff
@@ -258,20 +258,36 @@ export const dashboardWithFilter = {
|
||||
type: DASHBOARD_ROOT_TYPE,
|
||||
id: DASHBOARD_ROOT_ID,
|
||||
children: [DASHBOARD_GRID_ID],
|
||||
meta: {
|
||||
chartId: 0,
|
||||
height: 0,
|
||||
uuid: '',
|
||||
width: 0,
|
||||
},
|
||||
},
|
||||
|
||||
[DASHBOARD_GRID_ID]: {
|
||||
type: DASHBOARD_GRID_TYPE,
|
||||
id: DASHBOARD_GRID_ID,
|
||||
children: ['ROW_ID'],
|
||||
meta: {},
|
||||
meta: {
|
||||
chartId: 0,
|
||||
height: 0,
|
||||
uuid: '',
|
||||
width: 0,
|
||||
},
|
||||
},
|
||||
|
||||
[DASHBOARD_HEADER_ID]: {
|
||||
type: DASHBOARD_HEADER_TYPE,
|
||||
id: DASHBOARD_HEADER_ID,
|
||||
children: [],
|
||||
meta: {
|
||||
text: 'New dashboard',
|
||||
chartId: 0,
|
||||
height: 0,
|
||||
uuid: '',
|
||||
width: 0,
|
||||
},
|
||||
},
|
||||
|
||||
@@ -285,6 +301,7 @@ export const dashboardWithFilter = {
|
||||
...newComponentFactory(CHART_TYPE),
|
||||
id: 'FILTER_ID',
|
||||
meta: {
|
||||
...newComponentFactory(CHART_TYPE).meta,
|
||||
chartId: filterId,
|
||||
width: 3,
|
||||
height: 10,
|
||||
@@ -296,6 +313,7 @@ export const dashboardWithFilter = {
|
||||
...newComponentFactory(CHART_TYPE),
|
||||
id: 'CHART_ID',
|
||||
meta: {
|
||||
...newComponentFactory(CHART_TYPE).meta,
|
||||
chartId,
|
||||
width: 3,
|
||||
height: 10,
|
||||
|
||||
Reference in New Issue
Block a user