[Frontend] Add SECRET credential type for storing generic sensitive values (#4258)

This commit is contained in:
Marc Kelechava
2025-12-10 08:56:12 -08:00
committed by GitHub
parent e953dad878
commit 0207d13855
9 changed files with 283 additions and 66 deletions

View File

@@ -62,7 +62,9 @@ function CredentialSelector({ value, onChange }: Props) {
<p className="text-xs text-slate-400">
{credential.credential_type === "password"
? "Password"
: "Credit Card"}
: credential.credential_type === "credit_card"
? "Credit Card"
: "Secret"}
</p>
</div>
</CustomSelectItem>