mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Merge pull request #713 from Kamidu/master
fixing the back listing application view issue in policy view
This commit is contained in:
commit
b9d026da5e
@ -706,6 +706,17 @@ var androidOperationModule = function () {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// only for app whitelisting and black listing
|
||||
if (operationCode == "APP-RESTRICTION" && key == "restrictedApplications") {
|
||||
var i;
|
||||
for (i = 0; i < uiPayload.restrictedApplications.length; ++i) {
|
||||
$("#restrictedapplication-list").append('<tr>' +
|
||||
'<th>'+ (i+1) +'</th> <th>' + uiPayload.restrictedApplications[i].appName +
|
||||
'</th> <th>' + uiPayload.restrictedApplications[i].packageName + '</th></tr>');
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
);
|
||||
};
|
||||
|
||||
Loading…
Reference in New Issue
Block a user