Add quick'n'dirty interface for leads and features

This commit is contained in:
Eli Ribble 2026-04-17 02:59:01 +00:00
parent 1f8e6b698f
commit 617631063f
No known key found for this signature in database
5 changed files with 68 additions and 0 deletions

View file

@ -35,6 +35,19 @@
<td><b>Parcel Description</b></td>
<td>{{ selectedSite?.parcel?.description }}</td>
</tr>
<tr>
<td>
Features<br />
<ul>
<li v-for="(feature, index) in selectedSite?.features">
{{ feature.type }}
</li>
</ul>
</td>
</tr>
<tr>
<td>Leads: {{ selectedSite?.leads.length ?? "none" }}</td>
</tr>
</tbody>
</table>
</div>