Skip to content

Commit

Permalink
Update AddLanguage.jsx (#2090)
Browse files Browse the repository at this point in the history
Delete filter for code set for 639-2/B not null to add more languages like Lugbara, Teso, Ganda, Nkore, and Nyankole
  • Loading branch information
manumoreira authored and matiasgarciaisaia committed Jun 3, 2022
1 parent 3ac99be commit d666c55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/js/components/questionnaires/AddLanguage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class AddLanguage extends Component {
lang.text.indexOf(value) !== -1 || lang.text.toLowerCase().indexOf(value) !== -1

let languagesOptions = iso6393
.filter((lang) => lang.type == "living" && lang.iso6392T != null)
.filter((lang) => lang.type == "living")
.map((lang) => ({ id: idForLanguange(lang), text: lang.name }))

// Don't show languages that are already selected
Expand Down

0 comments on commit d666c55

Please sign in to comment.