fix nav exception on login page

This commit is contained in:
Dennis Eichhorn 2020-02-02 18:13:24 +01:00
parent 345cff167c
commit 21e0a9a249

View File

@ -40,6 +40,10 @@ jsOMS.Modules.Navigation = class {
const length = e.length;
for (let i = 0; i < length; ++i) {
if (e[i] === null) {
continue;
}
this.bindElement(e[i]);
}
};