We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20bd813 commit 8bd0e6eCopy full SHA for 8bd0e6e
src/services/EditorHelper.ts
@@ -60,6 +60,9 @@ export class EditorHelper {
60
if (sourceDoc){
61
fileChanged = (txtLine.text.trim() !== sourceDoc.lineAt(lineNumber-1).text.trim());
62
}
63
+ else{
64
+ return;
65
+ }
66
67
catch (exeption){
68
await vscode.window.showWarningMessage(
src/views/codeAnalytics/errorsViewTab.ts
@@ -374,11 +374,6 @@ class HtmlBuilder
374
codeObject: CodeObjectInfo,
375
viewModels?: ErrorFlowStackViewModel[],
376
): string{
377
- const characteristic = error.characteristic
378
- ? /*html*/`
379
- <section class="error-characteristic">${error.characteristic}</section>
380
- `
381
- : '';
382
return /*html*/`
383
<div class="error-view">
384
<div class="flex-row">
0 commit comments