Commit 4299feee by bergquist

feat(templates): collapse submenu if none visable templates

parent 86b19067
...@@ -140,7 +140,11 @@ function (angular, $, _, moment) { ...@@ -140,7 +140,11 @@ function (angular, $, _, moment) {
}; };
p.isSubmenuFeaturesEnabled = function() { p.isSubmenuFeaturesEnabled = function() {
return this.templating.list.length > 0 || this.annotations.list.length > 0 || this.links.length > 0; var visableTemplates = _.filter(this.templating.list, function(template) {
return template.hideVariable === undefined || template.hideVariable === false;
});
return visableTemplates.length > 0 || this.annotations.list.length > 0 || this.links.length > 0;
}; };
p.getPanelInfoById = function(panelId) { p.getPanelInfoById = function(panelId) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment