* Deletes a subpanel * @param {number} subPanelIndex - you already know lol
(subPanelIndex)
| 177 | */ |
| 178 | |
| 179 | deleteSubPanel(subPanelIndex) { |
| 180 | this.subPanels.splice(subPanelIndex, 1); |
| 181 | } |
| 182 | |
| 183 | duplicateSubPanel(subPanelIndex) { |
| 184 | const existingSubPanel = this.subPanels[subPanelIndex]; |