From 9b3b766bf0d66373c6e381141d358f389150acd5 Mon Sep 17 00:00:00 2001 From: Daniel Lando Date: Tue, 31 Oct 2023 08:20:33 +0100 Subject: [PATCH] fix(ui): add wakeup help Fixes #3395 --- src/components/nodes-table/ExpandedNode.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/components/nodes-table/ExpandedNode.vue b/src/components/nodes-table/ExpandedNode.vue index f334dcf0211..d96ee1a5366 100644 --- a/src/components/nodes-table/ExpandedNode.vue +++ b/src/components/nodes-table/ExpandedNode.vue @@ -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))