Browse Source

Removes extra new lines

main
Eric Amodio 3 years ago
parent
commit
2c4bbaef80
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/views/viewBase.ts

+ 2
- 2
src/views/viewBase.ts View File

@ -129,8 +129,8 @@ export abstract class ViewBase<
}`;
} else {
item.tooltip.appendMarkdown(
`\n\n---\n\ncontext: \`${item.contextValue}\`\n\nnode: \`${node.toString()}\`${
parent != null ? `\n\nparent: \`${parent.toString()}\`` : ''
`\n\n---\n\ncontext: \`${item.contextValue}\`\\\nnode: \`${node.toString()}\`${
parent != null ? `\\\nparent: \`${parent.toString()}\`` : ''
}`,
);
}

Loading…
Cancel
Save