State-TalentMAP icon indicating copy to clipboard operation
State-TalentMAP copied to clipboard

Defect - PostFilter.jsx

Open burgwyn opened this issue 6 years ago • 2 comments

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');
  }

burgwyn avatar Apr 26 '18 19:04 burgwyn