Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. public addNewProduct() {
  2. if (this.f.valid) {
  3. this.product.count = 1;
  4. this.productService.saveProduct(this.product).subscribe((data) => console.log('product added or updated'));
  5. }
  6. this.router.navigate(['admin-panel/products']);
  7. }
  8.  
  9. public addNewProduct() {
  10. if (this.f.valid) {
  11. this.product.count = 1;
  12. this.productService.saveProduct(this.product).subscribe(data => console.log('product added or updated'));
  13. }
  14. this.router.navigate(['admin-panel/products']);
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement