Merge pull request #10 from dcsjapan/rename-key

Adjust ID key name
This commit is contained in:
Toby Zerner 2016-06-04 18:59:58 +09:30
commit b27ac6004a
2 changed files with 2 additions and 2 deletions

View File

@ -152,7 +152,7 @@ System.register('flarum/subscriptions/addSubscriptionSettings', ['flarum/extend'
_export('default', function () { _export('default', function () {
extend(SettingsPage.prototype, 'notificationsItems', function (items) { extend(SettingsPage.prototype, 'notificationsItems', function (items) {
items.add('followAfterReply', Switch.component({ 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, state: this.user.preferences().followAfterReply,
onchange: this.preferenceSaver('followAfterReply') onchange: this.preferenceSaver('followAfterReply')
})); }));

View File

@ -8,7 +8,7 @@ export default function() {
extend(SettingsPage.prototype, 'notificationsItems', function(items) { extend(SettingsPage.prototype, 'notificationsItems', function(items) {
items.add('followAfterReply', items.add('followAfterReply',
Switch.component({ 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, state: this.user.preferences().followAfterReply,
onchange: this.preferenceSaver('followAfterReply') onchange: this.preferenceSaver('followAfterReply')
}) })