From d5ef2ac8329dee4e8406d20cafb87db4498c2baf Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Tue, 10 Jan 2023 12:15:24 +0100 Subject: [PATCH] fix #4455: ui: config panel: add missing onlineHelp mapping for SDN type Besides adding the correct help mapping this also avoid a successive null dereference exception. Signed-off-by: Thomas Lamprecht --- www/manager6/panel/ConfigPanel.js | 1 + 1 file changed, 1 insertion(+) diff --git a/www/manager6/panel/ConfigPanel.js b/www/manager6/panel/ConfigPanel.js index 51c47407..94600aa2 100644 --- a/www/manager6/panel/ConfigPanel.js +++ b/www/manager6/panel/ConfigPanel.js @@ -181,6 +181,7 @@ Ext.define('PVE.panel.Config', { 'type/node': 'chapter-sysadmin.html', 'type/pool': 'chapter-pveum.html#_pools', 'type/qemu': 'chapter-qm.html', + 'type/sdn': 'chapter-pvesdn.html', 'type/storage': 'chapter-pvesm.html', }; me.onlineHelp = typeToOnlineHelp[me.pveSelNode.data.id];