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);