Browse Source

Fix(UI):Fix tips error when login with username and without password. (#4728)

Replace isUserPassword to isUserName on the label that userNameText error tip.
pull/3/MERGE
Alleria Windrunner 3 years ago committed by GitHub
parent
commit
03ac3b42b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      dolphinscheduler-ui/src/js/conf/login/App.vue

2
dolphinscheduler-ui/src/js/conf/login/App.vue

@ -31,7 +31,7 @@
@keyup.enter.native="_ok">
</el-input>
</div>
<p class="error" v-if="isUserPassword">
<p class="error" v-if="isUserName">
{{userNameText}}
</p>
</div>

Loading…
Cancel
Save