From 9f06d8413294bce978c1c3fe622940cecd04ea51 Mon Sep 17 00:00:00 2001 From: Christina Toegl <toegl@tugraz.at> Date: Wed, 2 Dec 2020 15:46:18 +0100 Subject: [PATCH] Remove wrong argument in removeAttribute --- packages/app-shell/src/app-shell.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/app-shell/src/app-shell.js b/packages/app-shell/src/app-shell.js index 2f70e026..dc92fd04 100644 --- a/packages/app-shell/src/app-shell.js +++ b/packages/app-shell/src/app-shell.js @@ -421,7 +421,7 @@ export class AppShell extends ScopedElementsMixin(LitElement) { } else if (isMenuOverflow && menu.classList.contains('hidden')) { document.body.removeAttribute('style', 'overflow:hidden;'); - menu.removeAttribute('style', 'position: fixed;top: ' + topValue + 'px;bottom: 0;border-bottom: 0;overflow-y: auto;'); + menu.removeAttribute('style'); } const chevron = this.shadowRoot.querySelector("#menu-chevron-icon"); -- GitLab