fix(map): Removed NA text for challenge without time estimat

Closes #16454
This commit is contained in:
Lukasz Grzybowski
2018-01-12 11:57:58 +01:00
parent ecc2c9f2f0
commit e2a95d6978

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 || [];