mirror of
https://github.com/flarum/core.git
synced 2025-08-10 10:24:46 +02:00
Adjust ID key name
- Adjusts the key for the "Follow after reply" setting.
This commit is contained in:
@@ -152,7 +152,7 @@ System.register('flarum/subscriptions/addSubscriptionSettings', ['flarum/extend'
|
||||
_export('default', function () {
|
||||
extend(SettingsPage.prototype, 'notificationsItems', function (items) {
|
||||
items.add('followAfterReply', Switch.component({
|
||||
children: app.translator.trans('flarum-subscriptions.forum.settings.forum_follow_after_reply_label'),
|
||||
children: app.translator.trans('flarum-subscriptions.forum.settings.follow_after_reply_label'),
|
||||
state: this.user.preferences().followAfterReply,
|
||||
onchange: this.preferenceSaver('followAfterReply')
|
||||
}));
|
||||
|
@@ -8,7 +8,7 @@ export default function() {
|
||||
extend(SettingsPage.prototype, 'notificationsItems', function(items) {
|
||||
items.add('followAfterReply',
|
||||
Switch.component({
|
||||
children: app.translator.trans('flarum-subscriptions.forum.settings.forum_follow_after_reply_label'),
|
||||
children: app.translator.trans('flarum-subscriptions.forum.settings.follow_after_reply_label'),
|
||||
state: this.user.preferences().followAfterReply,
|
||||
onchange: this.preferenceSaver('followAfterReply')
|
||||
})
|
||||
|
Reference in New Issue
Block a user