scouting: Fix duplicate StartMatchAction submissions

When the user hits the "Undo" button right after hitting the "Start
Teleop" button, they get put back to the "Init" screen. But we've only
removed the `EndAutoPhaseAction`. Instead, we need to go back to the
"Pickup" screen.

The fix here is to properly undo just the `EndAutoPhaseAction` action.

Signed-off-by: Philipp Schrader <philipp.schrader@gmail.com>
Change-Id: Ic43b199507d0eb9bf566473997007d6c06352e62
diff --git a/scouting/www/entry/entry.component.ts b/scouting/www/entry/entry.component.ts
index 83502ea..230bfec 100644
--- a/scouting/www/entry/entry.component.ts
+++ b/scouting/www/entry/entry.component.ts
@@ -262,6 +262,7 @@
         case ActionType.EndAutoPhaseAction:
           this.autoPhase = true;
           this.section = 'Pickup';
+          break;
         case ActionType.NoShowAction:
           this.autoPhase = true;
           this.section = 'Init';