Skip to content

Commit

Permalink
feat(ui): show node info in fw update dialog (#3500)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsLando authored Jan 3, 2024
1 parent 74d7c31 commit 7c75532
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/views/ControlPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,13 @@ export default {
const result = await this.$listeners.showConfirm(
'Firmware update',
'',
`
<b>ID:</b> ${node.id}<br>
<b>Name:</b> ${node._name}<br>
<b>Product:</b> ${node.productDescription} (${node.manufacturer})<br>
<b>Current Firmware:</b> ${node.firmwareVersion}<br>
<b>Current SDK:</b> ${node.sdkVersion || '---'}<br>
`,
'info',
{
confirmText: 'Ok',
Expand Down

0 comments on commit 7c75532

Please sign in to comment.