We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62cf2ce commit 8a38132Copy full SHA for 8a38132
src/codeMarker.ts
@@ -2816,7 +2816,7 @@ export class CodeMarker implements vscode.TreeDataProvider<TreeEntry> {
2816
// Include location section if there's a label or description
2817
if (location.label !== "" || location.description !== "") {
2818
locationDescriptions += `\n\n---\n`;
2819
- locationDescriptions += `#### Location ${i + 1}${location.label ? ` ${location.label}` : ""}\n`;
+ locationDescriptions += `#### Location ${i + 1} ${location.label ?? ""}\n`;
2820
if (location.description !== "") {
2821
locationDescriptions += `${location.description}\n\n`;
2822
}
0 commit comments