mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-12 17:44:31 +00:00
Update Profile component
This commit is contained in:
parent
2aeb3ce27b
commit
47fdf0f0b7
1 changed files with 1 additions and 1 deletions
|
@ -352,6 +352,7 @@ export default {
|
||||||
fetchProfile() {
|
fetchProfile() {
|
||||||
axios.get('/api/v1/accounts/' + this.profileId).then(res => {
|
axios.get('/api/v1/accounts/' + this.profileId).then(res => {
|
||||||
this.profile = res.data;
|
this.profile = res.data;
|
||||||
|
this.loading = false;
|
||||||
});
|
});
|
||||||
axios.get('/api/v1/accounts/verify_credentials').then(res => {
|
axios.get('/api/v1/accounts/verify_credentials').then(res => {
|
||||||
this.user = res.data;
|
this.user = res.data;
|
||||||
|
@ -401,7 +402,6 @@ export default {
|
||||||
this.timeline.push(...data);
|
this.timeline.push(...data);
|
||||||
this.timelinePage += 1;
|
this.timelinePage += 1;
|
||||||
$state.loaded();
|
$state.loaded();
|
||||||
this.loading = false;
|
|
||||||
} else {
|
} else {
|
||||||
$state.complete();
|
$state.complete();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue