Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- deleteArticle(id) {
- if (confirm('You are about to permanently remove this article. Continue?')) {
- this.articleService.deleteArticle(id).subscribe(() => {
- this.articles = this.articles.filter(article => article.id !== id);
- // this.ngOnInit();
- });
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement