mirror of
https://github.com/stonith404/pingvin-share.git
synced 2025-02-19 01:55:48 -05:00
fix: obscured text length
This commit is contained in:
parent
a545c44426
commit
cbe37c6798
2 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
|
|
|
@ -65,7 +65,7 @@ const AdminConfigTable = () => {
|
|||
</td>
|
||||
<td>
|
||||
{configVariable.obscured
|
||||
? "••••••••••••"
|
||||
? "•".repeat(configVariable.value.length)
|
||||
: configVariable.value}
|
||||
</td>
|
||||
<td>
|
||||
|
|
Loading…
Add table
Reference in a new issue