From d448415eecf32c673812ba768a3bc48b287f65e6 Mon Sep 17 00:00:00 2001 From: Stephen Brown Date: Tue, 20 Apr 2021 18:29:55 +0200 Subject: [PATCH] Fix incorrect type on inputClass This was added as "toString" instead of "String", this this component breaks during development as it's typechecked --- src/components/password/Password.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/password/Password.vue b/src/components/password/Password.vue index c4736ea09..ca6e255d5 100755 --- a/src/components/password/Password.vue +++ b/src/components/password/Password.vue @@ -65,7 +65,7 @@ export default { type: Boolean, default: false }, - inputClass: toString, + inputClass: String, inputStyle: null, style: null, class: String,