()
| 9 | protected vueInstance; |
| 10 | |
| 11 | public openCorrectionCheck() { |
| 12 | if (this.state && this.state.similarity && this.state.similarity.same) { |
| 13 | con.log('similarity', this.state.similarity.value); |
| 14 | return false; |
| 15 | } |
| 16 | return this.openCorrection(true)!.then(() => { |
| 17 | return this.changed; |
| 18 | }); |
| 19 | } |
| 20 | |
| 21 | public openCorrection(syncMode = false): Promise<boolean> { |
| 22 | return new Promise((resolve, reject) => { |
no test coverage detected