From f3ec8f8c512733e01bf8a7adc864eb1d851f0439 Mon Sep 17 00:00:00 2001 From: Daniel Lando Date: Mon, 16 Sep 2024 11:00:16 +0200 Subject: [PATCH] fix(ui): routed ack frames row style Fixes #3775 --- src/views/Zniffer.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/views/Zniffer.vue b/src/views/Zniffer.vue index 806902ca027..d5e2b050a95 100644 --- a/src/views/Zniffer.vue +++ b/src/views/Zniffer.vue @@ -200,6 +200,9 @@ {{ item.payload }} + ROUTED ACK --- @@ -680,6 +683,8 @@ export default { style.backgroundColor = 'rgba(0, 0, 255, 0.5)' } else if (frame.corrupted) { style.backgroundColor = 'rgba(255, 0, 0, 0.1)' + } else if (frame.routedAck) { + style.backgroundColor = 'rgba(255, 165, 0, 0.1)' } else { if (frame.protocol === Protocols.ZWaveLongRange) { switch (frame.type) {