diff --git a/ts/rmo/content/compliance/Submit.vue b/ts/rmo/content/compliance/Submit.vue index 2af6d22a..597afb4f 100644 --- a/ts/rmo/content/compliance/Submit.vue +++ b/ts/rmo/content/compliance/Submit.vue @@ -111,8 +111,8 @@

Property Address

-
- {{ compliance.locator.address.raw }} +
+ {{ modelValue.locator.address.raw }} Provided @@ -130,10 +130,10 @@

Photos

- + - {{ compliance.images.length }} photo{{ - compliance.images.length > 1 ? "s" : "" + {{ modelValue.images.length }} photo{{ + modelValue.images.length > 1 ? "s" : "" }} uploaded @@ -141,9 +141,9 @@ Not Provided
-
+
Comments:
- {{ compliance.comments }} + {{ modelValue.comments }}
@@ -155,7 +155,7 @@
Entry permitted without owner present @@ -163,7 +163,7 @@ Entry permitted with owner @@ -172,7 +172,7 @@ Entry denied @@ -189,8 +189,8 @@

Contact Information

Name
-
- {{ compliance.contact.name }} +
+ {{ modelValue.contact.name }}
Not provided @@ -198,9 +198,9 @@
Phone
-
- {{ compliance.contact.phone }} - + {{ modelValue.contact.phone }} + (texting OK)
@@ -210,8 +210,8 @@
Email
-
- {{ compliance.contact?.email }} +
+ {{ modelValue.contact?.email }}
Not provided @@ -251,7 +251,7 @@ interface Emits { (e: "doSubmit"): void; } interface Props { - compliance: Compliance; + modelValue: Compliance; district: District; } const emit = defineEmits();