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 749c0c9bcc..9cf2300390 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
@@ -17,7 +17,7 @@ const features = [{
flag: 'webmentions'
},{
title: 'Websockets',
- description: 'Test out Websockets functionality at /ghost/#/websockets
.',
+ description: <>Test out Websockets functionality at /ghost/#/websockets
.>,
flag: 'websockets'
},{
title: 'Stripe Automatic Tax',
@@ -55,6 +55,10 @@ const features = [{
title: 'List-Unsubscribe header',
description: 'Set the List-Unsubscribe header in emails',
flag: 'listUnsubscribeHeader'
+},{
+ title: 'Editor emoji picker',
+ description: <>Trigger an emoji picker when typing {':{search}'}
in the editor>,
+ flag: 'editorEmojiPicker'
}];
const AlphaFeatures: React.FC = () => {
diff --git a/ghost/admin/app/components/koenig-lexical-editor.js b/ghost/admin/app/components/koenig-lexical-editor.js
index c49c22d31e..b429dbd161 100644
--- a/ghost/admin/app/components/koenig-lexical-editor.js
+++ b/ghost/admin/app/components/koenig-lexical-editor.js
@@ -292,7 +292,8 @@ export default class KoenigLexicalEditor extends Component {
fetchLabels,
feature: {
collectionsCard: this.feature.get('collectionsCard'),
- collections: this.feature.get('collections')
+ collections: this.feature.get('collections'),
+ emojiPicker: this.feature.get('editorEmojiPicker')
},
depreciated: {
headerV1: true // if false, shows header v1 in the menu
diff --git a/ghost/admin/app/services/feature.js b/ghost/admin/app/services/feature.js
index bf254f90d8..d1029154f3 100644
--- a/ghost/admin/app/services/feature.js
+++ b/ghost/admin/app/services/feature.js
@@ -77,6 +77,7 @@ export default class FeatureService extends Service {
@feature('tipsAndDonations') tipsAndDonations;
@feature('recommendations') recommendations;
@feature('lexicalIndicators') lexicalIndicators;
+ @feature('editorEmojiPicker') lexicalEmojiPicker;
_user = null;
diff --git a/ghost/core/core/shared/labs.js b/ghost/core/core/shared/labs.js
index ddb5723321..e849c71873 100644
--- a/ghost/core/core/shared/labs.js
+++ b/ghost/core/core/shared/labs.js
@@ -42,7 +42,8 @@ const ALPHA_FEATURES = [
'importMemberTier',
'recommendations',
'lexicalIndicators',
- 'listUnsubscribeHeader'
+ 'listUnsubscribeHeader',
+ 'editorEmojiPicker'
];
module.exports.GA_KEYS = [...GA_FEATURES];