diff -r 1f340f3597a8 -r ea92f4fe783d client/src/components/NavbarGroup.js --- a/client/src/components/NavbarGroup.js Tue Oct 09 19:07:47 2018 +0200 +++ b/client/src/components/NavbarGroup.js Mon Oct 08 18:35:47 2018 +0200 @@ -41,7 +41,7 @@ } if (currentGroup) { - const currentGroupName = currentGroup.get('name'); + const currentGroupName = currentGroup.name; return (
  • @@ -50,7 +50,7 @@
    { groups && groups.map((group, key) => { - const groupName = group.get('name'); + const groupName = group.name; const className = (groupName === currentGroupName)?'active':null; return { groupName } })