Skip to content
This repository was archived by the owner on Jan 7, 2020. It is now read-only.

Commit f9296a4

Browse files
authored
Merge pull request #21 from cfpb/force-uppercase
Force uppercase in names
2 parents 790e563 + 742769a commit f9296a4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/reports/modified-lar/index.jsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ class ModifiedLar extends React.Component {
3636
.then(result => {
3737
this.setState({
3838
status: { id: 2, message: 'ready' },
39-
institutions: result.institutions
39+
institutions: result.institutions.map(v => {
40+
return { ...v, name: v.name.toUpperCase() }
41+
})
4042
})
4143
})
4244
.catch(error => {

0 commit comments

Comments
 (0)