We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f03fe2c commit bdd50bbCopy full SHA for bdd50bb
09-http/app/app.component.ts
@@ -18,6 +18,8 @@ export class PizzaAppComponent {
18
}
19
20
loadData() {
21
- this.pizzaService.getPizza().subscribe((pizzas: Array<Object>) => this.pizzas = pizzas);
+ this.pizzaService
22
+ .getPizza()
23
+ .subscribe((pizzas: Array<Object>) => this.pizzas = pizzas);
24
25
11-interfaces/app/shared/pizza/pizza.model.ts
@@ -1,5 +1,5 @@
1
export interface Pizza {
2
- id: number,
3
- name: string,
4
- price: number
+ id: number;
+ name: string;
+ price: number;
5
12-routing-final/app/+pizza/shared/pizza.model.ts
0 commit comments