FIX: Permitted groups should display on group query access picker (#77)

The toString() that was introduced in 80ffc45 was preventing any actively permitted groups from displaying in the group picker when entering a query page.
This commit is contained in:
tshenry 2020-10-19 12:03:03 -07:00 committed by GitHub
parent d18634f19a
commit f1785326a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ export default Ember.Controller.extend({
return groups
.filter((g) => g.id !== 0)
.map((g) => {
return { id: g.id.toString(), name: g.name };
return { id: g.id, name: g.name };
});
},