diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-08-17 00:19:27 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-08-17 00:19:27 +0900 |
| commit | f3be077adcf6db8baa95c1f059a54e264f53eb31 (patch) | |
| tree | 7ee4764ba0650a98b144959efc36776d2233dd26 /src | |
| parent | :v: (diff) | |
| download | sharkey-f3be077adcf6db8baa95c1f059a54e264f53eb31.tar.gz sharkey-f3be077adcf6db8baa95c1f059a54e264f53eb31.tar.bz2 sharkey-f3be077adcf6db8baa95c1f059a54e264f53eb31.zip | |
Fix bug
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/mobile/views/pages/settings/settings.profile.vue | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/client/app/mobile/views/pages/settings/settings.profile.vue b/src/client/app/mobile/views/pages/settings/settings.profile.vue index da97cbebd7..78023ba501 100644 --- a/src/client/app/mobile/views/pages/settings/settings.profile.vue +++ b/src/client/app/mobile/views/pages/settings/settings.profile.vue @@ -61,7 +61,6 @@ export default Vue.extend({ birthday: null, avatarId: null, bannerId: null, - isBot: false, isCat: false, saving: false, avatarUploading: false, @@ -77,7 +76,6 @@ export default Vue.extend({ this.birthday = this.$store.state.i.profile.birthday; this.avatarId = this.$store.state.i.avatarId; this.bannerId = this.$store.state.i.bannerId; - this.isBot = this.$store.state.i.isBot; this.isCat = this.$store.state.i.isCat; }, @@ -136,7 +134,6 @@ export default Vue.extend({ birthday: this.birthday || null, avatarId: this.avatarId, bannerId: this.bannerId, - isBot: this.isBot, isCat: this.isCat }).then(i => { this.saving = false; |