From b3628aba2ef70deb7766d933065553811dbe9e8c Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 31 Jul 2020 13:07:10 +0200 Subject: Fix Internet Explorer 11 not loading because Element.append() does not exist Signed-off-by: Joas Schilling --- src/FilesSidebarCallViewApp.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/FilesSidebarCallViewApp.vue') diff --git a/src/FilesSidebarCallViewApp.vue b/src/FilesSidebarCallViewApp.vue index ce874bf61..91b4ea3d6 100644 --- a/src/FilesSidebarCallViewApp.vue +++ b/src/FilesSidebarCallViewApp.vue @@ -254,7 +254,7 @@ export default { } } - header.append(this.$el) + header.appendChild(this.$el) }, /** @@ -279,7 +279,7 @@ export default { const headerAction = document.querySelector('.app-sidebar-header__action') if (headerAction) { - headerAction.append(this.$el) + headerAction.appendChild(this.$el) } }, }, -- cgit v1.2.3