Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ginow authored Jan 6, 2019
1 parent 78674e2 commit 5aeb4ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/editable-table/editable-table.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export class EditableTableComponent implements OnInit {
data => {
console.log("data deleted:\n" + data);
},
error => alert(error)
error => console.log(error)
)
}
);
Expand Down Expand Up @@ -135,7 +135,7 @@ export class EditableTableComponent implements OnInit {
data => {
console.log("data updated:\n" + data);
},
error => alert(error)
error => console.log(error)
)
}
createNew(){
Expand Down

0 comments on commit 5aeb4ba

Please sign in to comment.