This is an automated email from the ASF dual-hosted git repository.

sureshanaparti pushed a commit to branch 4.16
in repository https://gitbox.apache.org/repos/asf/cloudstack.git


The following commit(s) were added to refs/heads/4.16 by this push:
     new f458964  ui: fix related key for section (#5929)
f458964 is described below

commit f458964e52a46ca33594bb0d8be293e7f58e5858
Author: Abhishek Kumar <[email protected]>
AuthorDate: Fri Feb 4 10:27:01 2022 +0530

    ui: fix related key for section (#5929)
    
    Fixes #5928
    
    Signed-off-by: Abhishek Kumar <[email protected]>
---
 ui/src/config/router.js | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/ui/src/config/router.js b/ui/src/config/router.js
index d6daa01..c748b50 100644
--- a/ui/src/config/router.js
+++ b/ui/src/config/router.js
@@ -43,7 +43,13 @@ function generateRouterMap (section) {
     name: section.name,
     path: '/' + section.name,
     hidden: section.hidden,
-    meta: { title: section.title, icon: section.icon, docHelp: 
Vue.prototype.$applyDocHelpMappings(section.docHelp), searchFilters: 
section.searchFilters },
+    meta: {
+      title: section.title,
+      icon: section.icon,
+      docHelp: Vue.prototype.$applyDocHelpMappings(section.docHelp),
+      searchFilters: section.searchFilters,
+      related: section.related
+    },
     component: RouteView
   }
 

Reply via email to