From 94ca66cde55f5c6bcacdd22566423bf089179aec Mon Sep 17 00:00:00 2001 From: Kevin Ansfield Date: Thu, 14 Oct 2021 15:58:29 +0100 Subject: [PATCH] Fixed design settings browser preview missing site title and icon no issue - when copying the template parts out of `` the template was left pointing to passed in arguments rather than pulling the data from the settings service --- ghost/admin/app/templates/settings/design/index.hbs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ghost/admin/app/templates/settings/design/index.hbs b/ghost/admin/app/templates/settings/design/index.hbs index 07578455f1..ac06333635 100644 --- a/ghost/admin/app/templates/settings/design/index.hbs +++ b/ghost/admin/app/templates/settings/design/index.hbs @@ -39,12 +39,12 @@
- {{#if @icon}} - icon + {{#if this.settings.icon}} + icon {{else}} {{svg-jar "default-favicon"}} {{/if}} - {{@title}} + {{this.settings.title}}