Merge pull request #1363 from Burtchen/patch-1

Linting fixes in Password.vue
pull/1391/head
Cagatay Civici 2021-07-27 11:02:03 +03:00 committed by GitHub
commit c86f5e0c2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@
<div class="p-password-meter">
<div :class="strengthClass" :style="{'width': meter ? meter.width : ''}"></div>
</div>
<div className="p-password-info">{{infoText}}</div>
<div class="p-password-info">{{infoText}}</div>
</slot>
<slot name="footer"></slot>
</div>
@ -164,7 +164,7 @@ export default {
},
onKeyUp(event) {
if (this.feedback) {
let value = event.target.value;
const value = event.target.value;
let label = null;
let meter = null;
@ -330,7 +330,7 @@ export default {
.p-password-strength {
height: 100%;
width: 0%;
width: 0;
transition: width 1s ease-in-out;
}