Skip to content

Commit

Permalink
fix(ui): add wakeup help
Browse files Browse the repository at this point in the history
Fixes #3395
  • Loading branch information
robertsLando committed Oct 31, 2023
1 parent 7b8d2e7 commit 9b3b766
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/nodes-table/ExpandedNode.vue
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,13 @@ export default {
return Array.isArray(comments) ? comments : [comments]
},
metaKeys() {
const helpKeys = ['manual', 'inclusion', 'exclusion', 'reset']
const helpKeys = [
'manual',
'inclusion',
'exclusion',
'reset',
'wakeup',
]
const keys = this.nodeMetadata ? Object.keys(this.nodeMetadata) : []
return keys.filter((key) => helpKeys.includes(key))
Expand Down

0 comments on commit 9b3b766

Please sign in to comment.