aboutsummaryrefslogtreecommitdiff
path: root/app/components/plan-view/plan-view.ts
diff options
context:
space:
mode:
Diffstat (limited to 'app/components/plan-view/plan-view.ts')
-rw-r--r--app/components/plan-view/plan-view.ts4
1 files changed, 2 insertions, 2 deletions
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();