mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Wired up tkReminders flag in Admin+editor (#19074)
refs https://github.com/TryGhost/Ghost/pull/19057 - the flag and toggle UI had been added but we were missing the final part of wiring up the feature in Admin and passthrough to the editor
This commit is contained in:
parent
baa62c0bed
commit
2f07af05cb
2 changed files with 3 additions and 1 deletions
|
@ -293,7 +293,8 @@ export default class KoenigLexicalEditor extends Component {
|
|||
feature: {
|
||||
collectionsCard: this.feature.get('collectionsCard'),
|
||||
collections: this.feature.get('collections'),
|
||||
emojiPicker: this.feature.get('editorEmojiPicker')
|
||||
emojiPicker: this.feature.get('editorEmojiPicker'),
|
||||
tkReminders: this.feature.get('tkReminders')
|
||||
},
|
||||
depreciated: {
|
||||
headerV1: true // if false, shows header v1 in the menu
|
||||
|
|
|
@ -80,6 +80,7 @@ export default class FeatureService extends Service {
|
|||
@feature('editorEmojiPicker') editorEmojiPicker;
|
||||
@feature('filterEmailDisabled') filterEmailDisabled;
|
||||
@feature('adminXDemo') adminXDemo;
|
||||
@feature('tkReminders') tkReminders;
|
||||
|
||||
_user = null;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue