Skip to content

Commit

Permalink
fix(ui): cleanup CRC error frames apperance
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsLando committed Dec 19, 2024
1 parent 4222d04 commit 75fc924
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/Zniffer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@
<template
v-slot:[`item.protocolDataRate`]="{ item }"
>
<span v-if="item.corrupted">----</span>
<span v-if="item.corrupted"></span>
<div v-else class="d-flex text-center">
<rich-value
:value="getProtocolIcon(item.protocol)"
Expand Down Expand Up @@ -198,7 +198,7 @@

<template v-slot:[`item.payload`]="{ item }">
<code v-if="item.corrupted"> CRC Error </code>
<span v-if="item.parsedPayload">
<span v-else-if="item.parsedPayload">
{{ getPayloadTags(item.parsedPayload) }}
</span>
<span
Expand Down

0 comments on commit 75fc924

Please sign in to comment.