diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-08-19 18:38:15 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-08-19 18:38:15 +0900 |
| commit | 19d979c33093ee2d0fc5b1084f480c250a261474 (patch) | |
| tree | 8a70f6fe72b53e23925b84420e94332fd7ed8c09 /src/client/app | |
| parent | nameId廃止 & アプリ作成時にシークレットを返すように (diff) | |
| parent | Fix bug (diff) | |
| download | misskey-19d979c33093ee2d0fc5b1084f480c250a261474.tar.gz misskey-19d979c33093ee2d0fc5b1084f480c250a261474.tar.bz2 misskey-19d979c33093ee2d0fc5b1084f480c250a261474.zip | |
Merge branch 'master' of https://github.com/syuilo/misskey
Diffstat (limited to 'src/client/app')
| -rw-r--r-- | src/client/app/mobile/views/pages/settings/settings.profile.vue | 36 |
1 files changed, 18 insertions, 18 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 78023ba501..3b797cdde1 100644 --- a/src/client/app/mobile/views/pages/settings/settings.profile.vue +++ b/src/client/app/mobile/views/pages/settings/settings.profile.vue @@ -91,15 +91,15 @@ export default Vue.extend({ method: 'POST', body: data }) - .then(response => response.json()) - .then(f => { - this.avatarId = f.id; - this.avatarUploading = false; - }) - .catch(e => { - this.avatarUploading = false; - alert('%18n:!@upload-failed%'); - }); + .then(response => response.json()) + .then(f => { + this.avatarId = f.id; + this.avatarUploading = false; + }) + .catch(e => { + this.avatarUploading = false; + alert('%18n:@upload-failed%'); + }); }, onBannerChange([file]) { @@ -113,15 +113,15 @@ export default Vue.extend({ method: 'POST', body: data }) - .then(response => response.json()) - .then(f => { - this.bannerId = f.id; - this.bannerUploading = false; - }) - .catch(e => { - this.bannerUploading = false; - alert('%18n:!@upload-failed%'); - }); + .then(response => response.json()) + .then(f => { + this.bannerId = f.id; + this.bannerUploading = false; + }) + .catch(e => { + this.bannerUploading = false; + alert('%18n:@upload-failed%'); + }); }, save() { |