From 2f044525f595bfc186e59839fb71a3a64ffd0d1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karl=20Kihlstr=C3=B6m?= Date: Tue, 26 May 2020 18:02:28 +0200 Subject: [PATCH] :bug: Fixes broken shortcut column height --- src/components/shortcuts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/shortcuts.js b/src/components/shortcuts.js index 9d26416..51d5e54 100755 --- a/src/components/shortcuts.js +++ b/src/components/shortcuts.js @@ -91,7 +91,7 @@ class MiniMediaPlayerShortcuts extends LitElement { shortcutStyle(item) { return { - 'min-height': `${this.height}px;`, + 'min-height': `${this.height}px`, ...(item.cover && { 'background-image': `url(${item.cover})` }), }; }