-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LIWO-112 : adjusted field names used for probability filter
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
export const probabilityConfig = [ | ||
{ title: 'alles weergeven', identifier: 'no_filter' }, | ||
{ title: 'grote kans (groter dan 1:30)', identifier: 'lt30' }, | ||
{ title: 'middelgrote kans (1:30 tot 1:300)', identifier: 'from30to300' }, | ||
{ title: 'kleine kans (1:300 tot 1:3000)', identifier: 'from300to3000' }, | ||
{ title: 'zeer kleine kans (1:3000 tot 1:30.000)', identifier: 'from3000to30000' }, | ||
{ title: 'extreem kleine kans (kleiner dan 1:30.000)', identifier: 'gt30000' } | ||
{ title: 'middelgrote kans (1:30 tot 1:300)', identifier: '30to300' }, | ||
{ title: 'kleine kans (1:300 tot 1:3000)', identifier: '300to3000' }, | ||
{ title: 'zeer kleine kans (1:3000 tot 1:30.000)', identifier: '3000to30k' }, | ||
{ title: 'extreem kleine kans (kleiner dan 1:30.000)', identifier: 'gt30k' } | ||
] | ||
|
||
export const probabilityTitles = probabilityConfig.map((entry) => entry.title) |