mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fix APPM store app crash on app installation product-iots#325
This commit is contained in:
parent
6ad69ca702
commit
a6883c55bb
@ -85,11 +85,13 @@ const columns = [
|
||||
key: 'imei',
|
||||
render: properties => {
|
||||
let imei = 'not-found';
|
||||
if (properties) {
|
||||
for (let i = 0; i < properties.length; i++) {
|
||||
if (properties[i].name === 'IMEI') {
|
||||
imei = properties[i].value;
|
||||
}
|
||||
}
|
||||
}
|
||||
return imei;
|
||||
},
|
||||
// todo add filtering options
|
||||
|
||||
@ -85,11 +85,13 @@ const columns = [
|
||||
key: 'imei',
|
||||
render: properties => {
|
||||
let imei = 'not-found';
|
||||
if (properties) {
|
||||
for (let i = 0; i < properties.length; i++) {
|
||||
if (properties[i].name === 'IMEI') {
|
||||
imei = properties[i].value;
|
||||
}
|
||||
}
|
||||
}
|
||||
return imei;
|
||||
},
|
||||
// todo add filtering options
|
||||
|
||||
Loading…
Reference in New Issue
Block a user