fix: ignore row clones in schema migration

This commit is contained in:
Torkel Ödegaard
2017-12-14 12:10:32 +01:00
parent fcca36a256
commit ff89531849
2 changed files with 18 additions and 2 deletions

View File

@@ -387,6 +387,10 @@ export class DashboardMigrator {
const showRows = _.some(old.rows, (row) => row.collapse || row.showTitle || row.repeat);
for (let row of old.rows) {
if (row.repeatIteration) {
continue;
}
let height: any = row.height || DEFAULT_ROW_HEIGHT;
const rowGridHeight = getGridHeight(height);