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,9 +85,11 @@ const columns = [
|
|||||||
key: 'imei',
|
key: 'imei',
|
||||||
render: properties => {
|
render: properties => {
|
||||||
let imei = 'not-found';
|
let imei = 'not-found';
|
||||||
for (let i = 0; i < properties.length; i++) {
|
if (properties) {
|
||||||
if (properties[i].name === 'IMEI') {
|
for (let i = 0; i < properties.length; i++) {
|
||||||
imei = properties[i].value;
|
if (properties[i].name === 'IMEI') {
|
||||||
|
imei = properties[i].value;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return imei;
|
return imei;
|
||||||
|
|||||||
@ -85,9 +85,11 @@ const columns = [
|
|||||||
key: 'imei',
|
key: 'imei',
|
||||||
render: properties => {
|
render: properties => {
|
||||||
let imei = 'not-found';
|
let imei = 'not-found';
|
||||||
for (let i = 0; i < properties.length; i++) {
|
if (properties) {
|
||||||
if (properties[i].name === 'IMEI') {
|
for (let i = 0; i < properties.length; i++) {
|
||||||
imei = properties[i].value;
|
if (properties[i].name === 'IMEI') {
|
||||||
|
imei = properties[i].value;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return imei;
|
return imei;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user