(newVal, oldVal)
| 427 | |
| 428 | 'runConfig.expectedSource': { |
| 429 | handler(newVal, oldVal) { |
| 430 | if (newVal === oldVal) { |
| 431 | return; |
| 432 | } |
| 433 | |
| 434 | handlingSourceChange = true; |
| 435 | this.$nextTick(() => { |
| 436 | this.runConfig.expectedVersion = getVersionFromSource( |
| 437 | newVal, |
| 438 | this.versions, |
| 439 | this.nightlyVersions |
| 440 | ); |
| 441 | handlingSourceChange = false; |
| 442 | }); |
| 443 | }, |
| 444 | deep: false |
| 445 | }, |
| 446 |
no test coverage detected
searching dependent graphs…