Skip to content

Commit

Permalink
LIWO-112 : adjusted field names used for probability filter
Browse files Browse the repository at this point in the history
  • Loading branch information
Adriaanse committed Oct 12, 2018
1 parent daa44d0 commit 46360c1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib/probability-filter.js
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)

0 comments on commit 46360c1

Please sign in to comment.