Skip to content
Snippets Groups Projects
Commit f76cac6c authored by Alex ORLUC's avatar Alex ORLUC
Browse files

FEAT #12074 TIME 0:05 fix lower case

parent b1a30e01
No related branches found
No related tags found
No related merge requests found
...@@ -53,7 +53,7 @@ export class TimeLimitPipe implements PipeTransform, OnDestroy { ...@@ -53,7 +53,7 @@ export class TimeLimitPipe implements PipeTransform, OnDestroy {
return '<span>' + this.lang.undefined + '</span>'; return '<span>' + this.lang.undefined + '</span>';
} else if(now > d) { } else if(now > d) {
if (args === 'badge') { if (args === 'badge') {
return this.getFormatedDate('', '<b>' + this.lang.outdated + ' ' + this.lang.fromRange + ' ' + (days-1) + ' '+ this.lang.dayS +' !</b>', 'warn', args); return this.getFormatedDate('', '<b>' + this.lang.outdated + ' ' + this.lang.fromRange.toLowerCase() + ' ' + (days-1) + ' '+ this.lang.dayS +' !</b>', 'warn', args);
} else { } else {
return this.getFormatedDate('', '<b>' + this.lang.outdated + ' !</b>', 'warn', args); return this.getFormatedDate('', '<b>' + this.lang.outdated + ' !</b>', 'warn', args);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment