()
| 314 | } |
| 315 | |
| 316 | getMax () { |
| 317 | if ((Array.isArray(this.schema.items)) && this.schema.additionalItems === false) { |
| 318 | return Math.min(this.schema.items.length, this.schema.maxItems || Infinity) |
| 319 | } |
| 320 | return this.schema.maxItems || Infinity |
| 321 | } |
| 322 | |
| 323 | refreshTabs (refreshHeaders) { |
| 324 | this.rows.forEach(row => { |
no outgoing calls
no test coverage detected