summaryrefslogtreecommitdiff
path: root/src/components/Global/InputPasswordToggle.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Global/InputPasswordToggle.vue')
-rw-r--r--src/components/Global/InputPasswordToggle.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/Global/InputPasswordToggle.vue b/src/components/Global/InputPasswordToggle.vue
index 228746cf..bf3e4ca5 100644
--- a/src/components/Global/InputPasswordToggle.vue
+++ b/src/components/Global/InputPasswordToggle.vue
@@ -31,7 +31,7 @@ export default {
components: { IconView, IconViewOff },
data() {
return {
- isVisible: false
+ isVisible: false,
};
},
methods: {
@@ -44,8 +44,8 @@ export default {
if (inputEl.nodeName === 'INPUT') {
inputEl.type = this.isVisible ? 'text' : 'password';
}
- }
- }
+ },
+ },
};
</script>