diff --git a/apps/admin-x-settings/src/components/settings/advanced/labs/AlphaFeatures.tsx b/apps/admin-x-settings/src/components/settings/advanced/labs/AlphaFeatures.tsx index c958bb2bf5..3c6c45764d 100644 --- a/apps/admin-x-settings/src/components/settings/advanced/labs/AlphaFeatures.tsx +++ b/apps/admin-x-settings/src/components/settings/advanced/labs/AlphaFeatures.tsx @@ -20,7 +20,7 @@ const features = [{ description: <>Test out Websockets functionality at /ghost/#/websockets., flag: 'websockets' },{ - title: 'Stripe Automatic Tax', + title: 'Stripe Automatic Tax (private beta)', description: 'Use Stripe Automatic Tax at Stripe Checkout. Needs to be enabled in Stripe', flag: 'stripeAutomaticTax' },{ @@ -64,7 +64,7 @@ const features = [{ description: 'Enables features to help combat spam member signups', flag: 'membersSpamPrevention' },{ - title: 'Internal Linking', + title: 'Internal Linking (private beta)', description: 'Adds internal URL search to editor link inputs', flag: 'internalLinking' },{ diff --git a/ghost/core/core/shared/labs.js b/ghost/core/core/shared/labs.js index f766e82ac6..c4d3ac58db 100644 --- a/ghost/core/core/shared/labs.js +++ b/ghost/core/core/shared/labs.js @@ -34,6 +34,8 @@ const BETA_FEATURES = [ 'additionalPaymentMethods', 'i18n', 'activitypub', + 'internalLinking', + 'stripeAutomaticTax', 'webmentions' ]; @@ -43,7 +45,6 @@ const ALPHA_FEATURES = [ 'urlCache', 'lexicalMultiplayer', 'websockets', - 'stripeAutomaticTax', 'emailCustomization', 'mailEvents', 'collectionsCard', @@ -52,8 +53,7 @@ const ALPHA_FEATURES = [ 'lexicalIndicators', // 'adminXOffers', 'adminXDemo', - 'membersSpamPrevention', - 'internalLinking' + 'membersSpamPrevention' ]; module.exports.GA_KEYS = [...GA_FEATURES];