Skip to content
Snippets Groups Projects
Commit 1c6ceb56 authored by Bjarke Madsen's avatar Bjarke Madsen
Browse files

Fix miscommented line

parent 5b0ddd41
Branches
Tags
1 merge request!75Add sorting of users in the user management page
This commit is part of merge request !75. Comments created here will be created in the context of that merge request.
This diff is collapsed.
...@@ -80,7 +80,7 @@ function UserManagementComponent() { ...@@ -80,7 +80,7 @@ function UserManagementComponent() {
}); });
fetchNrens().then((nrenList) => { fetchNrens().then((nrenList) => {
setNrens(nrenList)//.sort((a, b) => a.name.localeCompare(b.name))) setNrens(nrenList.sort((a, b) => a.name.localeCompare(b.name)))
}) })
}, []); }, []);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment