Scouting: Add No Show for Data Entry
Signed-off-by: Emily Markova <emily.markova@gmail.com>
Change-Id: Ic0e5b2cebd1d326c376bb140a90fdfa5d1f950de
diff --git a/scouting/www/entry/entry.component.ts b/scouting/www/entry/entry.component.ts
index 98c9311..ca5d0b8 100644
--- a/scouting/www/entry/entry.component.ts
+++ b/scouting/www/entry/entry.component.ts
@@ -13,6 +13,8 @@
import {
StartMatchAction,
StartMatchActionT,
+ NoShowActionT,
+ NoShowAction,
ScoreType,
StageType,
Submit2024Actions,
@@ -95,6 +97,7 @@
readonly StageType = StageType;
readonly ActionT = ActionT;
readonly ActionType = ActionType;
+ readonly NoShowActionT = NoShowActionT;
readonly StartMatchActionT = StartMatchActionT;
readonly MobilityActionT = MobilityActionT;
readonly PickupNoteActionT = PickupNoteActionT;
@@ -259,6 +262,10 @@
case ActionType.EndAutoPhaseAction:
this.autoPhase = true;
this.section = 'Pickup';
+ case ActionType.NoShowAction:
+ this.autoPhase = true;
+ this.section = 'Init';
+ break;
case ActionType.PickupNoteAction:
this.section = 'Pickup';
break;