Skip to content

Commit

Permalink
fix(ui): no secure nodes shown as secure
Browse files Browse the repository at this point in the history
Fixes #522
  • Loading branch information
robertsLando committed Feb 9, 2021
1 parent 239203c commit b9b1643
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/nodes-table/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,13 @@
{{ item.loc || '' }}
</template>
<template v-slot:[`item.isSecure`]="{ item }">
{{ item.isSecure ? 'Yes' : 'No' }}
{{
item.isSecure === true
? 'Yes'
: item.isSecure === false
? 'No'
: 'Unknown'
}}
</template>
<template v-slot:[`item.isBeaming`]="{ item }">
{{ item.isBeaming ? 'Yes' : 'No' }}
Expand Down

0 comments on commit b9b1643

Please sign in to comment.