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 e9efd81 commit e6373f4Copy full SHA for e6373f4
packages/lexical-devtools-core/src/generateContent.ts
@@ -445,7 +445,7 @@ function $printSelectedCharsLine({
445
];
446
const unselectedChars = Array(start + 1).fill(' ');
447
const selectedChars = Array(end - start).fill(SYMBOLS.selectedChar);
448
- const paddingLength = typeDisplay.length + 3; // 2 for the spaces around + 1 for the double quote.
+ const paddingLength = typeDisplay.length + 2; // 1 for the space after + 1 for the double quote.
449
450
const nodePrintSpaces = Array(nodeKeyDisplay.length + paddingLength).fill(
451
' ',
0 commit comments