From 9924e23b0d980f2b1b763413fe5f7faf2565f8e9 Mon Sep 17 00:00:00 2001 From: Mister Rajoy Date: Fri, 11 Dec 2020 16:46:05 +0100 Subject: [PATCH] Add preview section title --- .../Configuration/configurationpage.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Jellyfin.Plugin.SkinManager/Configuration/configurationpage.html b/Jellyfin.Plugin.SkinManager/Configuration/configurationpage.html index c837c04..9dad993 100644 --- a/Jellyfin.Plugin.SkinManager/Configuration/configurationpage.html +++ b/Jellyfin.Plugin.SkinManager/Configuration/configurationpage.html @@ -83,11 +83,12 @@ return ""; } var html = ""; - skin.previews.forEach(element => { + html += '

Previews

'; + skin.previews.forEach(element => { html += getImage(element.url); html += getImgnames(element.name); }); - return html; + return html; } function getCheckBox ( option) {