(elementID: string, errorInfo: string)
| 341 | } |
| 342 | |
| 343 | private showErrorWithInfo(elementID: string, errorInfo: string): void { |
| 344 | this.showElement(elementID, errorInfo ? true : false); |
| 345 | // eslint-disable-next-line @typescript-eslint/no-non-null-assertion |
| 346 | document.getElementById(elementID)!.textContent = errorInfo ? errorInfo : ""; |
| 347 | } |
| 348 | |
| 349 | private updateConfigSelection(message: any): void { |
| 350 | this.updating = true; |
no test coverage detected