Compare commits

...

1 Commits

Author SHA1 Message Date
Stian Aune abb0b65445 Fixing the error on login. 5 years ago
  1. 2
      webui/src/Components/Group.jsx

2
webui/src/Components/Group.jsx

@ -40,7 +40,7 @@ function Group({id, name, permissions}) {
}
function iCan(name) {
if (permissions === null) {
if (permissions === null || user === null) {
return false;
}

Loading…
Cancel
Save