-
+
+
+ You've already added {{ modelValue.images.length }} image{{
+ modelValue.images.length == 1 ? "" : "s"
+ }}
+ to this report. If you add images below, they will replace the image{{
+ modelValue.images.length == 1 ? "" : "s"
+ }}
+ already on this report.
diff --git a/ts/rmo/view/Compliance.vue b/ts/rmo/view/Compliance.vue
index 76d7d961..993d71b2 100644
--- a/ts/rmo/view/Compliance.vue
+++ b/ts/rmo/view/Compliance.vue
@@ -152,6 +152,7 @@ async function fetchExistingReport(report_uri: string) {
}
const body = await resp.json();
report.value.id = body.id;
+ report.value.images = body.images;
report.value.uri = body.uri;
report.value.address = body.address;
isLoading.value = false;