Merge pull request #16479 from lgrzybowski/fix/change_NA_to_blank_when_no_estimation

fix(map): Removed NA text for challenge without time estimat
This commit is contained in:
Berkeley Martinez
2018-01-23 18:59:30 -08:00
committed by GitHub

View File

@ -46,7 +46,7 @@ Observable.combineLatest(
const isComingSoon = !!challengeSpec.isComingSoon;
const fileName = challengeSpec.fileName;
const helpRoom = challengeSpec.helpRoom || 'Help';
const time = challengeSpec.time || 'N/A';
const time = challengeSpec.time;
const isLocked = !!challengeSpec.isLocked;
const message = challengeSpec.message;
const required = challengeSpec.required || [];