Skip to content

Commit

Permalink
fix: fw version undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsLando committed Jan 31, 2024
1 parent 9b2c563 commit f8f11ea
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/components/nodes-table/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -289,9 +289,11 @@
<div
style="white-space: pre"
v-text="
`FW: v${item.firmwareVersion}${
item.sdkVersion ? `\nSDK: v${item.sdkVersion}` : ''
}`
`${
item.firmwareVersion
? 'FW: v' + item.firmwareVersion
: '-----'
}${item.sdkVersion ? `\nSDK: v${item.sdkVersion}` : ''}`
"
v-else
></div>
Expand Down

0 comments on commit f8f11ea

Please sign in to comment.