We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c205b89 commit 4d9b392Copy full SHA for 4d9b392
1 file changed
js/composite_table.js
@@ -91,6 +91,10 @@ const compositeTable = class {
91
}
92
93
removeRow(idx) {
94
+ for (let i = idx + 1; i < this.rows.length; i++) {
95
+ this.rows[i].updateIndex(i - 1)
96
+ };
97
+
98
this.rows[idx].remove();
99
this.rows.splice(idx, 1);
100
this.nRows--
0 commit comments