mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
✨ Added beta feature toggle for moving excerpt field into editor (#20341)
closes https://linear.app/tryghost/issue/MOM-179 Full details coming soon to https://ghost.org/changelog - Adds a toggle to labs setting that moves the excerpt input below the post title in the editor
This commit is contained in:
parent
4a94b5efc9
commit
a7a1166310
3 changed files with 6 additions and 6 deletions
|
@ -67,10 +67,6 @@ const features = [{
|
||||||
title: 'ActivityPub',
|
title: 'ActivityPub',
|
||||||
description: '(Highly) Experimental support for ActivityPub.',
|
description: '(Highly) Experimental support for ActivityPub.',
|
||||||
flag: 'ActivityPub'
|
flag: 'ActivityPub'
|
||||||
},{
|
|
||||||
title: 'Show post excerpt inline',
|
|
||||||
description: 'Adds the excerpt input below the post title in the editor',
|
|
||||||
flag: 'editorExcerpt'
|
|
||||||
},{
|
},{
|
||||||
title: 'Excerpt in newsletter',
|
title: 'Excerpt in newsletter',
|
||||||
description: 'Showing excerpt in newsletter',
|
description: 'Showing excerpt in newsletter',
|
||||||
|
|
|
@ -19,6 +19,10 @@ const BetaFeatures: React.FC = () => {
|
||||||
action={<FeatureToggle flag="internalLinking" />}
|
action={<FeatureToggle flag="internalLinking" />}
|
||||||
detail={<>Search and link to your own content directly inside the editor — so that your workflow is never interrupted</>}
|
detail={<>Search and link to your own content directly inside the editor — so that your workflow is never interrupted</>}
|
||||||
title='Internal linking' />
|
title='Internal linking' />
|
||||||
|
<LabItem
|
||||||
|
action={<FeatureToggle flag="editorExcerpt" />}
|
||||||
|
detail={<>Adds the excerpt input below the post title in the editor</>}
|
||||||
|
title='Show post excerpt inline' />
|
||||||
<LabItem
|
<LabItem
|
||||||
action={<FeatureToggle flag="additionalPaymentMethods" />}
|
action={<FeatureToggle flag="additionalPaymentMethods" />}
|
||||||
detail={<>Enable support for PayPal, iDEAL, WeChat Pay and others. <a className='text-green' href="https://ghost.org/help/payment-methods" rel="noopener noreferrer" target="_blank">Learn more →</a></>}
|
detail={<>Enable support for PayPal, iDEAL, WeChat Pay and others. <a className='text-green' href="https://ghost.org/help/payment-methods" rel="noopener noreferrer" target="_blank">Learn more →</a></>}
|
||||||
|
|
|
@ -37,7 +37,8 @@ const BETA_FEATURES = [
|
||||||
'activitypub',
|
'activitypub',
|
||||||
'internalLinking',
|
'internalLinking',
|
||||||
'stripeAutomaticTax',
|
'stripeAutomaticTax',
|
||||||
'webmentions'
|
'webmentions',
|
||||||
|
'editorExcerpt'
|
||||||
];
|
];
|
||||||
|
|
||||||
const ALPHA_FEATURES = [
|
const ALPHA_FEATURES = [
|
||||||
|
@ -53,7 +54,6 @@ const ALPHA_FEATURES = [
|
||||||
'importMemberTier',
|
'importMemberTier',
|
||||||
'lexicalIndicators',
|
'lexicalIndicators',
|
||||||
'adminXDemo',
|
'adminXDemo',
|
||||||
'editorExcerpt',
|
|
||||||
'internalLinkingAtLinks'
|
'internalLinkingAtLinks'
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue