Skip to content

Commit 26c89cf

Browse files
authored
WEB-527 Date time format is not being rendered properly in the Manage Scheduler and COB Jobs and Data table pages (#2937)
1 parent d6282f8 commit 26c89cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/pipes/datetime-format.pipe.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export class DatetimeFormatPipe implements PipeTransform {
2626
} else {
2727
dateVal = moment(value as any);
2828
}
29-
const fmt = datetimeFormat ?? 'yyyy-MM-ddTHH:mm:ssZ';
29+
const fmt = datetimeFormat ?? 'YYYY-MM-DDTHH:mm:ssZ';
3030
return dateVal.format(fmt);
3131
}
3232
}

0 commit comments

Comments
 (0)