(index,secondaryIndex)
| 30 | } |
| 31 | |
| 32 | deleteExitTab(index,secondaryIndex) { |
| 33 | if (this.exitTabs.nestedExitTabs.length > 0) { |
| 34 | this.exitTabs.nestedExitTabs.splice(secondaryIndex, 1); |
| 35 | } else { |
| 36 | this.exitTabs.splice(index,1); |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | duplicateExitTab(index) { |
| 41 | const exisitingTab = this.exitTabs[index]; |