Editor box preview mention space ahead and word break fix

This commit is contained in:
Bojan Mojsilovic 2023-09-06 15:42:32 +02:00
parent 36de3da6ba
commit a0d5463e15
2 changed files with 1 additions and 2 deletions

View File

@ -231,7 +231,6 @@ textarea::-webkit-scrollbar{
min-height: 60px;
outline: 0px solid transparent;
word-wrap: break-word;
word-break: break-all;
font-size: 16px;
line-height: 20px;
font-weight: 400;

View File

@ -617,7 +617,7 @@ const EditBox: Component<{
<span class='linkish'> @{name}</span>;
// @ts-ignore
return link.outerHTML || ` @${name}`;
return ` ${link.outerHTML}` || ` @${name}`;
});
};