scouting: Submit the Auto quadrant selection to the webserver

This patch makes it so the user's selection of the quadrant in Auto
gets sent to the webserver. It's not added to the database yet.

Signed-off-by: Philipp Schrader <philipp.schrader@gmail.com>
Change-Id: Ia41df12b680eeb03062359d5dd561f3d8cd07df7
diff --git a/scouting/www/entry/entry.component.ts b/scouting/www/entry/entry.component.ts
index d06e117..7461aad 100644
--- a/scouting/www/entry/entry.component.ts
+++ b/scouting/www/entry/entry.component.ts
@@ -36,6 +36,7 @@
     ball3: boolean = false;
     ball4: boolean = false;
     ball5: boolean = false;
+    quadrant: number = 1;
     errorMessage: string = '';
     noShow: boolean = false;
     neverMoved: boolean = false;
@@ -106,6 +107,7 @@
         SubmitDataScouting.addAutoBall3(builder, this.ball3);
         SubmitDataScouting.addAutoBall4(builder, this.ball4);
         SubmitDataScouting.addAutoBall5(builder, this.ball5);
+        SubmitDataScouting.addStartingQuadrant(builder, this.quadrant);
 
         // TODO(phil): Add support for defensePlayedOnScore.
         // TODO(phil): Fix the Climbing score.