diff --git a/src/layouts/customer-details/customer-details.vue b/src/layouts/customer-details/customer-details.vue
index c1e8c0031..3923081dd 100644
--- a/src/layouts/customer-details/customer-details.vue
+++ b/src/layouts/customer-details/customer-details.vue
@@ -3,12 +3,20 @@
-
+ validationRules="first-name-required" />
+
+
({
+ customerQuestions: {
+ addressQuestions: {
+ streetAddress: "",
+ city: "",
+ state: "",
+ zipCode: "",
+ },
+ firstName: "",
+ lastName: "",
+ emailAddress: "",
+ },
+ }),
+ },
+ validationRules: String,
+ },
computed: {
textAreaLabelCopy() {
return this.getCmsContent("TextAreaContentWidget", "QuestionText");
},
+ customerModel: {
+ get: function () {
+ return this.modelValue;
+ },
+ set: function (newValue) {
+ this.$emit("update:modelValue", newValue);
+ },
+ },
},
components: {
funnelHeader,
@@ -119,6 +159,7 @@ export default {
textboxQuestion,
funnelFooter,
Form,
+ textBlock,
},
};