Skip to content

Commit 30d2c02

Browse files
committed
show real name in availabilities overview #33
1 parent 56c6d31 commit 30d2c02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/components/Availabilities.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export default React.createClass({
5050
end_time: moment(av.till),
5151
id: av._id,
5252
group: volunteer.group,
53-
title: 'Name' || `${volunteer.name.first || ''} ${volunteer.name.last || ''}`.trim(),
53+
title: `${volunteer.name.first || ''} ${volunteer.name.last || ''}`.trim(),
5454
className,
5555
});
5656
}));

0 commit comments

Comments
 (0)