This commit is contained in:
Kuba Orlik 2022-01-14 19:27:45 +01:00
parent 3faa013b9b
commit 82351453f6
1 changed files with 2 additions and 2 deletions

View File

@ -53,9 +53,9 @@ function Placeholder({ children }: { children: string }) {
bottom: "3px",
}}
>
{" ".repeat(12)}
<span dangerouslySetInnerHTML={{ __html: "&nbsp;".repeat(12) }}></span>
<span style={{ color: "gray" }}>({children})</span>
{"&nbsp;".repeat(12)}
<span dangerouslySetInnerHTML={{ __html: "&nbsp;".repeat(12) }}></span>
</span>
);
}