From b3f0a541a805d89d5679cb032051c92b417263cf Mon Sep 17 00:00:00 2001 From: vhande Date: Thu, 4 Jul 2024 14:30:29 +0200 Subject: [PATCH] Eeplace asterisk with dot --- resources/ts/Components/CopyText.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/ts/Components/CopyText.tsx b/resources/ts/Components/CopyText.tsx index d7a456f71..47f4e487b 100644 --- a/resources/ts/Components/CopyText.tsx +++ b/resources/ts/Components/CopyText.tsx @@ -30,7 +30,7 @@ export const CopyText = ({ text, isSecret }: Props) => { className="font-mono whitespace-pre text-ellipsis overflow-hidden text-sm text-publiq-orange max-md:max-w-[15rem] max-xl:max-w-[30rem]" ref={codeFieldRef} > - {!isSecret || isSecretVisible ? text : "*".repeat(text?.length ?? 36)} + {!isSecret || isSecretVisible ? text : "•".repeat(text?.length ?? 36)}