State-TalentMAP
State-TalentMAP copied to clipboard
Defect - PostFilter.jsx
I believe this is related to #1843
Exception when country is null
getAllDomesticCodes(props = this.props) {
return props.item.data.slice().filter(b => b.location.country === 'United States');
}
getAllOverseasCodes(props = this.props) {
return props.item.data.slice().filter(b => b.location.country !== 'United States');
}