From f949199ad4121548f369128fcd508615e38618a3 Mon Sep 17 00:00:00 2001 From: Awilum Date: Sun, 8 Mar 2020 23:17:07 +0300 Subject: [PATCH] fix(admin-plugin): fix incorrect data merging of manifest and settings for plugins and themes #404 --- site/plugins/admin/templates/extends/themes/index.html | 10 +++++----- .../plugins/admin/templates/system/tools/registry.html | 6 ++++-- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/site/plugins/admin/templates/extends/themes/index.html b/site/plugins/admin/templates/extends/themes/index.html index cc5b165d..a5dbf2a2 100644 --- a/site/plugins/admin/templates/extends/themes/index.html +++ b/site/plugins/admin/templates/extends/themes/index.html @@ -28,13 +28,13 @@ {{ icon('fas fa-palette') }} - {{ theme.name }} + {{ theme.manifest.name }} - {{ theme.description }} + {{ theme.manifest.description }} - {{ theme.author.name }} + {{ theme.manifest.author.name }} - {{ theme.version }} + {{ theme.manifest.version }}