mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Fixed empty accent color not set in preview mode
no issue Current logic ignored empty accent color value coming from the preview url which did not unset the accent color when removed from preview. The fix allows for empty accent color in preview so that it can be reset to default.
This commit is contained in:
parent
9263a84c09
commit
b414e3b7e4
1 changed files with 1 additions and 1 deletions
|
@ -191,7 +191,7 @@ export default class App extends React.Component {
|
|||
data.site.portal_plans = value ? value.split(',') : [];
|
||||
} else if (key === 'page' && value) {
|
||||
data.page = value;
|
||||
} else if (key === 'accentColor' && value) {
|
||||
} else if (key === 'accentColor' && (value === '' || value)) {
|
||||
data.site.accent_color = value;
|
||||
} else if (key === 'buttonIcon' && value) {
|
||||
data.site.portal_button_icon = value;
|
||||
|
|
Loading…
Add table
Reference in a new issue