Created
March 20, 2019 16:58
-
-
Save davidroyer/1d736667955d86de934bee9af7ea14ee to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
createCustomProgramList() { | |
const customProgramList = this.programs.map(program => { | |
if (program.tagNames.includes("Adult Education")) { | |
program.degree_level = "Adult Education"; | |
} | |
return program; | |
}); | |
return customProgramList; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment