Update Timeline.vue

This commit is contained in:
Daniel Supernault 2019-06-27 00:50:32 -06:00
parent 76962abb4c
commit ddaafd9678
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 10 additions and 1 deletions

View File

@ -449,6 +449,13 @@
this.config = res.data;
this.fetchProfile();
this.fetchTimelineApi();
// if(this.config.announcement.enabled == true) {
// let msg = $('<div>')
// .addClass('alert alert-warning mb-0 rounded-0 text-center font-weight-bold')
// .html(this.config.announcement.message);
// $('body').prepend(msg);
// }
});
},
@ -748,7 +755,9 @@
type: 'status',
item: status.id
}).then(res => {
this.feed.splice(index,1);
this.feed = this.feed.filter(s => {
return s.id != status.id;
})
swal('Success', 'You have successfully deleted this post', 'success');
}).catch(err => {
swal('Error', 'Something went wrong. Please try again later.', 'error');