Skip to content
Snippets Groups Projects
Commit d9986331 authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Fix showing alternateClassNames when nothing else.

parent eb325330
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,7 @@ Ext.define('Docs.view.cls.Overview', {
},
renderHierarchy: function(cls) {
if (cls.superclasses.length === 0 && cls.allMixins.length === 0) {
if (cls.superclasses.length === 0 && cls.allMixins.length === 0 && cls.alternateClassNames.length === 0) {
return "";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment