Commit 8c579a5225bcc70e00d0c8535e186161116c691c
1 parent
ab1ac65b
fix: device detail RSA publicKey use inputTextArea && not limit length
Showing
1 changed file
with
4 additions
and
4 deletions
| ... | ... | @@ -406,12 +406,12 @@ export const step2Schemas: FormSchema[] = [ |
| 406 | 406 | }, |
| 407 | 407 | { |
| 408 | 408 | label: 'RSA公钥', |
| 409 | - component: 'Input', | |
| 409 | + component: 'InputTextArea', | |
| 410 | 410 | field: 'publicKey', |
| 411 | 411 | required: true, |
| 412 | 412 | ifShow: false, |
| 413 | 413 | componentProps: { |
| 414 | - maxLength: 36, | |
| 414 | + rows: 8, | |
| 415 | 415 | placeholder: '请输入RSA公钥', |
| 416 | 416 | }, |
| 417 | 417 | }, |
| ... | ... | @@ -604,12 +604,12 @@ export const TokenSchemas: FormSchema[] = [ |
| 604 | 604 | }, |
| 605 | 605 | { |
| 606 | 606 | label: 'RSA公钥', |
| 607 | - component: 'Input', | |
| 607 | + component: 'InputTextArea', | |
| 608 | 608 | field: 'publicKey', |
| 609 | 609 | required: true, |
| 610 | 610 | ifShow: false, |
| 611 | 611 | componentProps: { |
| 612 | - maxLength: 36, | |
| 612 | + rows: 8, | |
| 613 | 613 | placeholder: '请输入RSA公钥', |
| 614 | 614 | }, |
| 615 | 615 | }, | ... | ... |