From 88ede0c696f7963d0597158be8e09ff7de104998 Mon Sep 17 00:00:00 2001 From: Patrick Smith Date: Fri, 10 Aug 2018 11:20:35 -0400 Subject: [PATCH] Emit raw field value instead of masked value --- js/components/text_input.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/components/text_input.js b/js/components/text_input.js index 88334115..d45570ed 100644 --- a/js/components/text_input.js +++ b/js/components/text_input.js @@ -90,7 +90,7 @@ export default { // Emit a change event this.$root.$emit('field-change', { - value, + value: this._rawValue(value), valid, name: this.name })