Commit cb21b064f1346b9441add9a0bede6c222143f4c4
1 parent
d3423f8e
Add element
Showing
1 changed file
with
7 additions
and
0 deletions
Show diff stats
src/app/pages/statements/components/busStop2/busStop2.service.ts
... | ... | @@ -18,6 +18,13 @@ export class BusStop2Service { |
18 | 18 | locationLeft: '1', |
19 | 19 | locationRight: '1', |
20 | 20 | state: 'Test' |
21 | + }, { | |
22 | + id: 2, | |
23 | + road: 'Test2', | |
24 | + region: 'Test2', | |
25 | + locationLeft: '2', | |
26 | + locationRight: '2', | |
27 | + state: 'Test2' | |
21 | 28 | }]; |
22 | 29 | return Promise.resolve(busStops); |
23 | 30 | // return this.http.get(this.url) | ... | ... |