Commit d4989bba authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Avoid crash on header rendering if xtypes missing.

parent f40cdf25
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ Ext.define('Docs.view.cls.Header', {
                        feature: "ftype"
                    };
                    var r = [];
                    Ext.Object.each(map, function(ns, title) {
                    xtypes && Ext.Object.each(map, function(ns, title) {
                        if (xtypes[ns]) {
                            r.push(title + ": " + xtypes[ns].join(", "));
                        }