Skip to content

Commit

Permalink
url updated
Browse files Browse the repository at this point in the history
  • Loading branch information
JLSchaap committed Aug 29, 2024
1 parent 86e5255 commit 1f0ff2c
Showing 1 changed file with 2 additions and 17 deletions.
19 changes: 2 additions & 17 deletions projects/vectortile-demo/src/app/enumVisualisatie.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,25 +90,10 @@ export function exhaustiveGuard(_value: never): never {

export function getAllVisualisaties(): Visualisatie[] {
const array: Visualisatie[] = []
if (demoSettings.previewFeature)

for (const value of enumKeys(Visualisatie)) {
array.push(Visualisatie[value])
}
else
for (const value of enumKeys(Visualisatie)) {
if (
[
'Top10nlBlanco',
'Top10nlKleurrijk',
'Top10nlStandaard',
'Top10nlTegels'
].includes(value)
) {
//skip
} else {
array.push(Visualisatie[value])
}
}
}
return array
}

Expand Down

0 comments on commit 1f0ff2c

Please sign in to comment.