Skip to content

Commit

Permalink
fix(ui): allow to perform OTW update from controller advanced actions
Browse files Browse the repository at this point in the history
Fixes #3844
  • Loading branch information
robertsLando committed Aug 14, 2024
1 parent 55a10a3 commit 5e06fee
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion src/components/nodes-table/ExpandedNode.vue
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,20 @@ export default {
},
advancedActions() {
const nodeActions = this.node.isControllerNode
? []
? [
{
text: 'Firmware update OTW',
options: [
{
name: 'Update',
action: 'firmwareUpdateOTW',
},
],
icon: 'update',
color: 'red',
desc: 'Perform a firmware update OTW (Over The Wire)',
},
]
: [
{
text: 'Firmware update',
Expand Down

0 comments on commit 5e06fee

Please sign in to comment.