Run `prettier` on //scouting
Signed-off-by: Philipp Schrader <philipp.schrader@gmail.com>
Change-Id: Idbb6011040f44d2b6c4158bf4c84a37818f258a5
diff --git a/scouting/www/app.ts b/scouting/www/app.ts
index c82fbb3..02af125 100644
--- a/scouting/www/app.ts
+++ b/scouting/www/app.ts
@@ -1,20 +1,23 @@
import {Component, ElementRef, ViewChild} from '@angular/core';
-type Tab = 'MatchList'|'Notes'|'Entry'|'ImportMatchList';
+type Tab = 'MatchList' | 'Notes' | 'Entry' | 'ImportMatchList';
type TeamInMatch = {
- teamNumber: number,
- matchNumber: number,
- compLevel: string
+ teamNumber: number;
+ matchNumber: number;
+ compLevel: string;
};
@Component({
selector: 'my-app',
templateUrl: './app.ng.html',
- styleUrls: ['./common.css']
+ styleUrls: ['./common.css'],
})
export class App {
- selectedTeamInMatch:
- TeamInMatch = {teamNumber: 1, matchNumber: 1, compLevel: 'qm'};
+ selectedTeamInMatch: TeamInMatch = {
+ teamNumber: 1,
+ matchNumber: 1,
+ compLevel: 'qm',
+ };
tab: Tab = 'MatchList';
@ViewChild('block_alerts') block_alerts: ElementRef;