Advertisement
Shell_Casing

modification

Dec 11th, 2018
406
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. deleteArticle(id) {
  2.     if (confirm('You are about to permanently remove this article. Continue?')) {
  3.       this.articleService.deleteArticle(id).subscribe(() => {
  4.         this.articles = this.articles.filter(article => article.id !== id);
  5.        // this.ngOnInit();
  6.       });
  7.     }
  8.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement