Fix unreachable status

This commit is contained in:
Stefan Bethke 2025-05-30 17:30:26 +02:00
commit 17582fe9c1

View file

@ -25,7 +25,7 @@
if (lock.ops.low_battery) { if (lock.ops.low_battery) {
state_bat.innerHTML = state_bat.innerHTML + '<svg class="icon"><use href="static/icons.svg#icon-mobile-bolt-svgrepo-com"/></svg>'; state_bat.innerHTML = state_bat.innerHTML + '<svg class="icon"><use href="static/icons.svg#icon-mobile-bolt-svgrepo-com"/></svg>';
} }
if (lock.ops.low_battery) { if (lock.ops.unreachable) {
state_bat.innerHTML = state_bat.innerHTML + '<svg class="icon"><use href="static/icons.svg#icon-broken-link-svgrepo-com"/></svg>'; state_bat.innerHTML = state_bat.innerHTML + '<svg class="icon"><use href="static/icons.svg#icon-broken-link-svgrepo-com"/></svg>';
} }
} }