From 721c4a49c47460f1618a0f679fe9125a5f519cdc Mon Sep 17 00:00:00 2001 From: Alex Tatiyants Date: Thu, 7 Jan 2016 07:44:48 -0800 Subject: fix various build issues --- app/components/plan-view/plan-view.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/components/plan-view') diff --git a/app/components/plan-view/plan-view.ts b/app/components/plan-view/plan-view.ts index 302d8ee..93b3a97 100644 --- a/app/components/plan-view/plan-view.ts +++ b/app/components/plan-view/plan-view.ts @@ -55,7 +55,7 @@ export class PlanView { maxRows: this.rootContainer[this._planService.MAXIMUM_ROWS_PROP] || 0, maxCost: this.rootContainer[this._planService.MAXIMUM_COSTS_PROP] || 0, maxDuration: this.rootContainer[this._planService.MAXIMUM_DURATION_PROP] || 0 - } + }; } ngOnInit() { @@ -75,7 +75,7 @@ export class PlanView { var unit: string = ''; if (originalValue < 1) { - duration = "<1"; + duration = '<1'; unit = 'ms'; } else if (originalValue > 1 && originalValue < 1000) { duration = originalValue.toString(); -- cgit v1.2.3