mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Updated publication image in popup header to use icon
closes https://github.com/TryGhost/members.js/issues/72 - Portal previously user publication logo as header image on logged out pages - Replaces `logo` setting with publication `icon` for header image
This commit is contained in:
parent
14998061bd
commit
c2ee482293
3 changed files with 3 additions and 2 deletions
|
@ -99,7 +99,7 @@ export default class SigninPage extends React.Component {
|
|||
}
|
||||
|
||||
renderSiteLogo() {
|
||||
const siteLogo = this.context.site.logo;
|
||||
const siteLogo = this.context.site.icon;
|
||||
|
||||
const logoStyle = {};
|
||||
|
||||
|
|
|
@ -271,7 +271,7 @@ class SignupPage extends React.Component {
|
|||
|
||||
renderSiteLogo() {
|
||||
const {site} = this.context;
|
||||
const siteLogo = site.logo;
|
||||
const siteLogo = site.icon;
|
||||
|
||||
const logoStyle = {};
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@ export const site = {
|
|||
title: 'Ghost Site',
|
||||
description: 'Thoughts, stories and ideas.',
|
||||
logo: 'https://pbs.twimg.com/profile_images/1111773508231667713/mf2N0uqc_400x400.png',
|
||||
icon: 'https://pbs.twimg.com/profile_images/1111773508231667713/mf2N0uqc_400x400.png',
|
||||
accent_color: '#AB19E4',
|
||||
url: 'http://localhost:2368/',
|
||||
plans: {
|
||||
|
|
Loading…
Add table
Reference in a new issue