aboutsummaryrefslogtreecommitdiff
path: root/app/services/plan-service.ts
diff options
context:
space:
mode:
authorAlex Tatiyants <atatiyan@gmail.com>2016-01-29 21:05:29 -0800
committerAlex Tatiyants <atatiyan@gmail.com>2016-01-29 21:33:22 -0800
commitd256691ac0e4d2e1cd41ef1c1d9ce3c310e77dc6 (patch)
treeec74c3da7ec9ac3fad752147af1756bbcbdd3e30 /app/services/plan-service.ts
parent267ebad5c09c88b0b1612669afd8b9928e91200c (diff)
fix #12
Diffstat (limited to 'app/services/plan-service.ts')
-rw-r--r--app/services/plan-service.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/plan-service.ts b/app/services/plan-service.ts
index b5f8102..a32001b 100644
--- a/app/services/plan-service.ts
+++ b/app/services/plan-service.ts
@@ -49,7 +49,7 @@ export class PlanService {
for (var i in localStorage) {
if (_.startsWith(i, this.PEV_PLAN_TAG)) {
- plans.push(JSON.parse(localStorage[i]));
+ plans.push(JSON.parse(localStorage[i]));
}
}