提交 8edfbe3d 编写于 作者: T Tim Zallmann

Fixed problem when element in main menu is not there (specs)

上级 07f6c1b8
......@@ -49,7 +49,8 @@ export default {
eventHub.$on(`${this.namespace}-dropdownOpen`, this.dropdownOpenHandler);
// As we init it through requestIdleCallback it could be that the dropdown is already open
if (document.getElementById(`nav-${this.namespace}-dropdown`).classList.contains('show')) {
const namespaceDropdown = document.getElementById(`nav-${this.namespace}-dropdown`);
if (namespaceDropdown && namespaceDropdown.classList.contains('show')) {
this.dropdownOpenHandler();
}
},
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册