Show reporter ownership information for water reports

This commit is contained in:
Eli Ribble 2026-03-20 18:38:57 +00:00
parent 557caef8e5
commit bf5c49378b
No known key found for this signature in database

View file

@ -536,6 +536,25 @@
</template>
</div>
</div>
<template
x-if="selectedCommunication.type === 'publicreport.water' && selectedCommunication.public_report?.water != null"
x-data="selectedCommunication.public_report.water ?? {}"
>
<div class="row g-3">
<div class="col-12">
<ul>
<template x-if="is_reporter_owner">
<li>Reporter is the owner of the property</li>
</template>
<template x-if="is_reporter_confidential">
<li>
Reporter has asked to be kept confidential
</li>
</template>
</ul>
</div>
</div>
</template>
</div>
</div>