From 30d203eff8135b63d36bb98207d8a6d1714380fc Mon Sep 17 00:00:00 2001 From: ztimson Date: Thu, 11 Jul 2019 19:44:50 -0400 Subject: [PATCH] Fixed build error --- src/app/map/calibrate/calibrate.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/map/calibrate/calibrate.component.ts b/src/app/map/calibrate/calibrate.component.ts index 7d3b4c7..bdf137c 100644 --- a/src/app/map/calibrate/calibrate.component.ts +++ b/src/app/map/calibrate/calibrate.component.ts @@ -14,7 +14,7 @@ export class CalibrateComponent { this.physicsService.calibrate.next(c); } - constructor(private bottomSheetRef: MatBottomSheetRef, private physicsService: PhysicsService) { + constructor(private bottomSheetRef: MatBottomSheetRef, public physicsService: PhysicsService) { this._calibration = this.physicsService.calibrate.value; }