From a7271a5a7a02e1c63bb3206340bc48706a484325 Mon Sep 17 00:00:00 2001 From: James Fusia Date: Mon, 9 Dec 2024 22:55:41 -0500 Subject: [PATCH] Link to 2024 data --- src/services/data.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/services/data.service.ts b/src/services/data.service.ts index 3a1920d..9b3c0bf 100644 --- a/src/services/data.service.ts +++ b/src/services/data.service.ts @@ -1,9 +1,9 @@ import { Injectable } from '@angular/core'; import Papa, { ParseRemoteConfig, ParseResult } from 'papaparse'; import { ReplaySubject } from 'rxjs'; -import { KeyValue } from '../models/key-value'; import { Csv } from '../enums/csv'; import { Milestone } from '../enums/milestone'; +import { KeyValue } from '../models/key-value'; @Injectable({ providedIn: 'root' }) export class DataService { @@ -22,7 +22,7 @@ export class DataService { readonly Schools$ = this.schools.asObservable(); readonly Schools = () => this._schools; - private _years = Array(2023 - 2015 + 1) + private _years = Array(2024 - 2015 + 1) .fill(0) .map((_, index) => 2015 + index); private years = new ReplaySubject(1);