Commit 704b8da76c17bd3b1a879938527d19279bf15ec8

Authored by Marcelo Puebla
1 parent 5af4c21439
Exists in master

Arreglo en busqueda de productos.

src/app/components/busqueda-productos/busqueda-productos.component.ts
... ... @@ -24,7 +24,8 @@ export class BusquedaProductosComponent implements OnInit {
24 24 private router: Router) { }
25 25  
26 26 ngOnInit() {
27   -
  27 +
  28 + this.productoService.productoAcargar = undefined;
28 29 this.productoService.getAll()
29 30 .subscribe((data: Producto[]) => {
30 31