Skip to content

Commit

Permalink
fix(Navigation/MapNode): do not wrap escaped characters
Browse files Browse the repository at this point in the history
  • Loading branch information
ma-efremoff committed Feb 9, 2024
1 parent 91aa32e commit 60c0893
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

.escape {
word-spacing: 5px;
white-space: pre-wrap;
white-space: pre;
background-color: var(--error-background);
}

Expand Down
2 changes: 1 addition & 1 deletion packages/ui/tests/e2e/pages/navigation.base.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ test('Navigation - URL correct encoding', async ({page}) => {
});
});

test('Navigation - escpaped symbols are highlighted and cyrillic', async ({page}) => {
test('Navigation - escaped symbols are highlighted and cyrillic', async ({page}) => {
test.slow();

await test.step('escaped-symbol\\n', async () => {
Expand Down

0 comments on commit 60c0893

Please sign in to comment.