Skip to content

Commit

Permalink
Make properties public
Browse files Browse the repository at this point in the history
  • Loading branch information
matthijsln committed Jun 19, 2024
1 parent a1873d2 commit 1b71c95
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ export class PlanmonitorWonenModule {
.pipe(filter(g => g.length > 0), take(1))
.subscribe(gemeentes => {
adminFieldRegistrationService.registerFields(AdminFieldLocation.GROUP, [
{ type: "choice", label: "Type gebruiker", dataType: "string", key: "typeGebruiker", values: [ "gemeente", "provincie" ] },
{ type: "choice", label: "Gemeente", dataType: "string", key: "gemeente", values: gemeentes.filter(g => g.provincie === 'Zeeland').map(g => g.naam) },
{ type: "choice", label: "Type gebruiker", dataType: "string", key: "typeGebruiker", isPublic: true, values: [ "gemeente", "provincie" ] },
{ type: "choice", label: "Gemeente", dataType: "string", key: "gemeente", isPublic: true, values: gemeentes.filter(g => g.provincie === 'Zeeland').map(g => g.naam) },
]);
});
}
Expand Down

0 comments on commit 1b71c95

Please sign in to comment.