Merge pull request #348 from wooferzfg/empty-columns-bug

Fix empty columns affecting columns to the left
This commit is contained in:
Christopher Serr
2020-05-01 17:34:08 +02:00
committed by GitHub
+2
View File
@@ -57,6 +57,8 @@ export default class Split extends React.Component<Props> {
const column = this.props.split.columns[i];
if (!column.value) {
lastEmptyColumnIndex = i;
} else {
break;
}
}