Skip to content

Commit

Permalink
Merge pull request #181 from ConductionNL/Feature/XW-109/object-change
Browse files Browse the repository at this point in the history
Feature/XW-109/object-change
  • Loading branch information
remko48 authored Nov 22, 2023
2 parents e6c46dd + 6d70ab7 commit 9e9dcdc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export const FiltersTemplate: React.FC<FiltersTemplateProps> = ({ isLoading }) =

const categoriesWithData = getCategories.data.categorie.map((category: any) => ({
label: _.upperFirst(category._id.toLowerCase()),
value: category._id.toLowerCase(),
value: _.upperFirst(category._id.toLowerCase()),
}));

setCategoryOptions(_.orderBy(_.uniqBy(categoriesWithData, "value"), "label", "asc"));
Expand Down
2 changes: 1 addition & 1 deletion pwa/static/configFiles/epe.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"GATSBY_SHOW_THEME_SWITCHER": "false",
"GATSBY_API_BASE_URL": "https://api.common-gateway.commonground.nu/api",
"GATSBY_API_BASE_URL": "https://api.gateway.commonground.nu/api",
"GATSBY_NL_DESIGN_THEME_CLASSNAME": "epe-theme",
"GATSBY_FAVICON_URL": "https://www.epe.nl/sites/default/themes/custom/toptasks_sub_theme/favicon/favicon-32x32.png",
"GATSBY_ORGANISATION_NAME": "Gemeente Epe",
Expand Down

0 comments on commit 9e9dcdc

Please sign in to comment.