Skip to content

Commit 0cdfa47

Browse files
Rebase to master and fix suggestions
1 parent 7aaf684 commit 0cdfa47

File tree

1 file changed

+2
-2
lines changed
  • app/javascript/components/selected-groups-list

1 file changed

+2
-2
lines changed

app/javascript/components/selected-groups-list/index.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import PropTypes from 'prop-types';
44

55
const SelectedGroupsList = ({ groups }) => {
66
const selectedGroups = [];
7-
// console.log(groups);
8-
groups.sort();
7+
98
if (groups) {
9+
groups.sort();
1010
groups.forEach((group) => {
1111
selectedGroups.push(
1212
<div key={group}>

0 commit comments

Comments
 (0)