chore: added tn/pn filters for trains & timetables

This commit is contained in:
2024-10-01 15:53:59 +02:00
parent cac4345683
commit 52d1771c21
6 changed files with 42 additions and 15 deletions
+2
View File
@@ -39,6 +39,8 @@ export namespace Journal {
ALL_SPECIALS = 'all-specials',
TWR = 'twr',
SKR = 'skr',
PN = 'pn',
TN = 'tn',
TWR_SKR = 'twr-skr'
}
+9 -2
View File
@@ -12,12 +12,14 @@ export const enum TrainFilterId {
withComments = 'withComments',
twr = 'twr',
skr = 'skr',
tn = 'tn',
pn = 'pn',
common = 'common',
passenger = 'passenger',
freight = 'freight',
other = 'other',
noTimetable = 'noTimetable',
withTimetable = 'withTimetable'
}
@@ -40,7 +42,12 @@ export const trainFilters: TrainFilter[] = [
isActive: true
},
{
id: TrainFilterId.skr,
id: TrainFilterId.tn,
section: TrainFilterSection.TRAIN_TYPE,
isActive: true
},
{
id: TrainFilterId.pn,
section: TrainFilterSection.TRAIN_TYPE,
isActive: true
},