Skip to content

Commit c6745bd

Browse files
[DURACOM-317] correct text fix
1 parent 9f72031 commit c6745bd

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/app/audit-page/audit-table/audit-table.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
}
4848
</td>
4949
<td>{{ audit.epersonName }}</td>
50-
<td>{{ audit.timeStamp | date:dateFormat}}</td>
50+
<td>{{ audit.timeStamp | date:dateFormat:'UTC' }}</td>
5151
@if (isOverviewPage) {
5252
<td>
5353
@if (audit.objectUUID) {

src/app/audit-page/audit-table/audit-table.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ describe('AuditTableComponent', () => {
6767
it('should display the timestamp in the third column', () => {
6868
const rowElements = fixture.debugElement.queryAll(By.css('tbody tr'));
6969
const el = rowElements[0].query(By.css('td:nth-child(3)')).nativeElement;
70-
expect(el.textContent).toContain('2020-11-13 11:41:06');
70+
expect(el.textContent).toContain('2020-11-13 10:41:06');
7171
});
7272

7373
it('should display the objectUUID in the fourth column', () => {

0 commit comments

Comments
 (0)