diff options
| author | Maxim Filippov <colixer@gmail.com> | 2019-02-06 14:21:13 +0300 |
|---|---|---|
| committer | Maxim Filippov <colixer@gmail.com> | 2019-02-06 14:21:13 +0300 |
| commit | 0c5c8898509e195654f4a42be77c59dbf6713c34 (patch) | |
| tree | a51d8d299ef7f8bff4a25ce3bb14467575f94e88 /src/components/user_settings/user_settings.js | |
| parent | 18594569bd0fe77507ee700ddcc1cc2589f925dd (diff) | |
Rename "hide_following" to "hide_follows"
Diffstat (limited to 'src/components/user_settings/user_settings.js')
| -rw-r--r-- | src/components/user_settings/user_settings.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/user_settings/user_settings.js b/src/components/user_settings/user_settings.js index 64f18373..ef9398f6 100644 --- a/src/components/user_settings/user_settings.js +++ b/src/components/user_settings/user_settings.js @@ -12,7 +12,7 @@ const UserSettings = { newLocked: this.$store.state.users.currentUser.locked, newNoRichText: this.$store.state.users.currentUser.no_rich_text, newDefaultScope: this.$store.state.users.currentUser.default_scope, - hideFollowings: this.$store.state.users.currentUser.hide_followings, + hideFollows: this.$store.state.users.currentUser.hide_follows, hideFollowers: this.$store.state.users.currentUser.hide_followers, followList: null, followImportError: false, @@ -69,7 +69,7 @@ const UserSettings = { /* eslint-disable camelcase */ const default_scope = this.newDefaultScope const no_rich_text = this.newNoRichText - const hide_followings = this.hideFollowings + const hide_follows = this.hideFollows const hide_followers = this.hideFollowers /* eslint-enable camelcase */ this.$store.state.api.backendInteractor @@ -82,7 +82,7 @@ const UserSettings = { /* eslint-disable camelcase */ default_scope, no_rich_text, - hide_followings, + hide_follows, hide_followers /* eslint-enable camelcase */ }}).then((user) => { |
