Skip to content

Commit

Permalink
Merge branch 'master' into alpine-3.21
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsLando authored Dec 19, 2024
2 parents f864f67 + 655fc92 commit e594c62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/views/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,6 @@
newZwave.deviceConfigPriorityDir
"
label="Config priority directory"
:rules="[rules.required]"
hint="Directory from where device configuration files can be loaded with higher priority than the included ones. This directory does not get indexed and should be used sparingly, e.g. when custom files are absolutely necessary or for testing"
required
></v-text-field>
Expand Down
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 e594c62

Please sign in to comment.