1
0
mirror of https://github.com/stonith404/pingvin-share.git synced 2024-07-01 23:20:13 +02:00

fix: obscured text length

This commit is contained in:
Elias Schneider 2022-12-08 23:12:25 +01:00
parent a545c44426
commit cbe37c6798
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ const configVariables: Prisma.ConfigCreateInput[] = [
{
key: "ENABLE_EMAIL_RECIPIENTS",
description:
"Whether to send emails to recipients. Only set this to true if you entered the host, port, email and password of your SMTP server.",
"Whether to send emails to recipients. Only set this to true if you entered the host, port, email, user and password of your SMTP server.",
type: "boolean",
value: "false",
secret: false,

View File

@ -65,7 +65,7 @@ const AdminConfigTable = () => {
</td>
<td>
{configVariable.obscured
? "••••••••••••"
? "•".repeat(configVariable.value.length)
: configVariable.value}
</td>
<td>