Zmiana wyglądu filtrów widoku pociągów

This commit is contained in:
2021-02-28 20:47:39 +01:00
parent 6cbe9fc557
commit 109fe2afc5
13 changed files with 534 additions and 128 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ export default class StationFilterManager {
private sorter: { index: number; dir: number } = { index: 0, dir: 1 };
private filteredStationList(stationList: Station[]): Station[] {
getFilteredStationList(stationList: Station[]): Station[] {
return stationList
.filter(station => {
if ((station.nonPublic || !station.reqLevel) && this.filters['nonPublic']) return false;