chore: fix table widget migration merge conflict (#16711)
This commit is contained in:
parent
6f45430395
commit
87774a64ac
|
|
@ -70,7 +70,7 @@ export const layoutConfigurations: LayoutConfigurations = {
|
||||||
FLUID: { minWidth: -1, maxWidth: -1 },
|
FLUID: { minWidth: -1, maxWidth: -1 },
|
||||||
};
|
};
|
||||||
|
|
||||||
export const LATEST_PAGE_VERSION = 60;
|
export const LATEST_PAGE_VERSION = 61;
|
||||||
|
|
||||||
export const GridDefaults = {
|
export const GridDefaults = {
|
||||||
DEFAULT_CELL_SIZE: 1,
|
DEFAULT_CELL_SIZE: 1,
|
||||||
|
|
|
||||||
|
|
@ -1086,12 +1086,12 @@ export const transformDSL = (
|
||||||
}
|
}
|
||||||
|
|
||||||
if (currentDSL.version === 59) {
|
if (currentDSL.version === 59) {
|
||||||
currentDSL = migrateTableWidgetV2Validation(currentDSL);
|
currentDSL = migrateChartWidgetReskinningData(currentDSL);
|
||||||
currentDSL.version = LATEST_PAGE_VERSION;
|
currentDSL.version = 60;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (currentDSL.version === 59) {
|
if (currentDSL.version === 60) {
|
||||||
currentDSL = migrateChartWidgetReskinningData(currentDSL);
|
currentDSL = migrateTableWidgetV2Validation(currentDSL);
|
||||||
currentDSL.version = LATEST_PAGE_VERSION;
|
currentDSL.version = LATEST_PAGE_VERSION;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user