Skip to content

Commit

Permalink
fix: 新建凭据使用用户名+密码为空时,用户名和密码的必填提示反过来了 TencentBlueKing#2588
Browse files Browse the repository at this point in the history
  • Loading branch information
hLinx committed Nov 6, 2023
1 parent 70aba1c commit 9b532a4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,14 +87,14 @@
value1: [
{
required: true,
message: I18n.t('ticket.密码必填'),
message: I18n.t('ticket.用户名必填'),
trigger: 'blur',
},
],
value2: [
{
required: true,
message: I18n.t('ticket.用户名必填'),
message: I18n.t('ticket.密码必填'),
trigger: 'blur',
},
],
Expand Down

0 comments on commit 9b532a4

Please sign in to comment.