Fix signal lines showing the correct type

This commit is contained in:
Eli Ribble 2026-03-20 19:26:57 +00:00
parent 8c6bb7db26
commit b034fa5cf5
No known key found for this signature in database

View file

@ -526,7 +526,7 @@
x-for="signal in selectedSignals"
:key="signal.id"
>
<tr x-if="signal.type == 'flyover pool'">
<tr>
<td>
<button
@click="toggleSignal(signal)"
@ -536,7 +536,16 @@
<i class="bi bi-x"></i>
</button>
</td>
<td>Green pool</td>
<td>
<template
x-if="signal.type == 'publicreport nuisance'"
><span>Nuisance</span></template
>
<template
x-if="signal.type == 'publicreport water'"
><span>Water</span></template
>
</td>
<td>
<time-relative
:time="signal.created"