@@ -59,7 +59,7 @@ const HardwareDeconfigurationStore = {
59
59
api . spread ( ( ...responses ) => {
60
60
const coreData = responses . map ( ( { data } ) => {
61
61
var msgArgs = 'None' ;
62
- var pelId = '' ;
62
+ var eventId = '' ;
63
63
const conditionsArray = data . Status ?. Conditions ;
64
64
if ( Array . isArray ( conditionsArray ) && conditionsArray . length ) {
65
65
const messageArgsArray = conditionsArray [ 0 ] . MessageArgs ;
@@ -68,9 +68,9 @@ const HardwareDeconfigurationStore = {
68
68
}
69
69
const logEntry = conditionsArray [ 0 ] . LogEntry ;
70
70
if ( logEntry ) {
71
- const pelIdUrl = logEntry [ '@odata.id' ] ;
72
- const splitUrl = pelIdUrl . split ( '/' ) ;
73
- pelId = splitUrl [ splitUrl . length - 1 ] ;
71
+ const eventIdUrl = logEntry [ '@odata.id' ] ;
72
+ const splitUrl = eventIdUrl . split ( '/' ) ;
73
+ eventId = splitUrl [ splitUrl . length - 1 ] ;
74
74
}
75
75
}
76
76
return {
@@ -110,7 +110,7 @@ const HardwareDeconfigurationStore = {
110
110
? i18n . t ( 'pageDeconfigurationHardware.table.filter.unknown' )
111
111
: msgArgs ,
112
112
processorId : procId ,
113
- pelID : pelId ,
113
+ eventID : eventId ,
114
114
} ;
115
115
} ) ;
116
116
return coreData ;
@@ -134,7 +134,7 @@ const HardwareDeconfigurationStore = {
134
134
api . spread ( ( ...responses ) => {
135
135
const dimmsData = responses . map ( ( { data } ) => {
136
136
var msgArgs = 'None' ;
137
- var pelId = '' ;
137
+ var eventId = '' ;
138
138
const conditionsArray = data . Status ?. Conditions ;
139
139
if ( Array . isArray ( conditionsArray ) && conditionsArray . length ) {
140
140
const messageArgsArray = conditionsArray [ 0 ] . MessageArgs ;
@@ -143,9 +143,9 @@ const HardwareDeconfigurationStore = {
143
143
}
144
144
const logEntry = conditionsArray [ 0 ] . LogEntry ;
145
145
if ( logEntry ) {
146
- const pelIdUrl = logEntry [ '@odata.id' ] ;
147
- const splitUrl = pelIdUrl . split ( '/' ) ;
148
- pelId = splitUrl [ splitUrl . length - 1 ] ;
146
+ const eventIdUrl = logEntry [ '@odata.id' ] ;
147
+ const splitUrl = eventIdUrl . split ( '/' ) ;
148
+ eventId = splitUrl [ splitUrl . length - 1 ] ;
149
149
}
150
150
}
151
151
return {
@@ -184,7 +184,7 @@ const HardwareDeconfigurationStore = {
184
184
settings : data . Enabled ,
185
185
uri : data [ '@odata.id' ] ,
186
186
available : data . Status ?. State ,
187
- pelID : pelId ,
187
+ eventID : eventId ,
188
188
} ;
189
189
} ) ;
190
190
const dimmsDataFiltered = dimmsData . filter (
0 commit comments