Skip to content

Commit

Permalink
fix(plugin-form): fix rsa public key input field (#1384)
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinryerson authored May 3, 2024
1 parent c03b79b commit 54fd561
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ const buildFormSchema = (parentKey: string, response: Record<string, any>, initi
}, {})
}
if (treatAsCredential.value && props.config.app === 'kongManager' && credentialSchema) {
if (treatAsCredential.value && credentialSchema) {
for (let i = 0; i < credentialSchema.length; i++) {
if (credentialSchema[i][field]) {
initialFormSchema[field] = {
Expand Down

0 comments on commit 54fd561

Please sign in to comment.