Skip to content

Commit

Permalink
correccion de errores
Browse files Browse the repository at this point in the history
  • Loading branch information
matias1305 committed Dec 13, 2018
1 parent be89c60 commit f1bc62e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/pages/add-book/add-book.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ export class AddBookComponent implements OnInit {
book.id = user.uid + "-" + new Date().valueOf() ;
book.uid = user.uid;
book.status = 'available';
book.categories = this.selected_categories;
book.genres = this.selected_categories;

console.log(book.categories);
console.log(book.genres);
console.log(this.selected_categories);

// Guarda el libro
Expand Down

0 comments on commit f1bc62e

Please sign in to comment.