This repository was archived by the owner on May 14, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +0
-19
lines changed Expand file tree Collapse file tree 4 files changed +0
-19
lines changed Original file line number Diff line number Diff line change 56
56
{{ auditRecord.createdBy ? auditRecord.createdBy : 'N/A' }}
57
57
</ div >
58
58
</ div >
59
- < div class ="row audit-summary-row ">
60
- < div class ="col-md-3 ">
61
- < strong > Server Host:</ strong >
62
- </ div >
63
- < div class ="col-md-21 ">
64
- {{ auditRecord.serverHost }}
65
- </ div >
66
- </ div >
67
59
< div class ="row audit-summary-row ">
68
60
< div class ="col-md-3 ">
69
61
< strong > Data:</ strong >
Original file line number Diff line number Diff line change 49
49
id ="sort-createdBy "> Created By
50
50
</ app-sort >
51
51
</ th >
52
- < th style ="width: 100px ">
53
- < app-sort [indeterminate] ="true " (change) ="applySort($event) " [value] ="'serverHost' " [sort] ="params "
54
- id ="sort-serverHost "> Host
55
- </ app-sort >
56
- </ th >
57
52
< th >
58
53
< app-sort [indeterminate] ="true " (change) ="applySort($event) " [value] ="'auditData' " [sort] ="params "
59
54
id ="sort-auditData "> Data
82
77
< td nowrap ="">
83
78
{{item.createdBy || 'N/A'}}
84
79
</ td >
85
- < td nowrap ="">
86
- {{ item.serverHost }}
87
- </ td >
88
80
< td class ="dataflow-truncator-width ">
89
81
< dataflow-truncator [input] ="item.auditData " trailPosition ="start " trail ="… "> </ dataflow-truncator >
90
82
</ td >
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ export class AuditRecord implements Serializable<AuditRecord> {
12
12
13
13
public auditRecordId : number ;
14
14
public createdBy : string ;
15
- public serverHost : string ;
16
15
public correlationId : string ;
17
16
public auditData : string ;
18
17
public createdOn : Moment ;
@@ -33,7 +32,6 @@ export class AuditRecord implements Serializable<AuditRecord> {
33
32
public deserialize ( input ) {
34
33
this . auditRecordId = input . auditRecordId ;
35
34
this . createdBy = input . createdBy ;
36
- this . serverHost = input . serverHost ;
37
35
this . correlationId = input . correlationId ;
38
36
this . auditData = input . auditData ;
39
37
this . createdOn = moment ( input . createdOn , 'Y-MM-DD[T]HH:mm:ss.SSS[Z]' ) ;
Original file line number Diff line number Diff line change @@ -50,7 +50,6 @@ export class MockAuditRecordService {
50
50
auditRecord . auditAction = 'action' ;
51
51
auditRecord . auditOperation = 'operation' ;
52
52
auditRecord . createdBy = 'Cartman' ;
53
- auditRecord . serverHost = 'host' ;
54
53
auditRecord . createdOn = moment ( ) ;
55
54
return Observable . of ( auditRecord ) ;
56
55
}
You can’t perform that action at this time.
0 commit comments