0
Fork 0
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:
Rish 2020-10-01 12:17:57 +05:30
parent 9263a84c09
commit b414e3b7e4

View file

@ -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;