add the column of CPU Platform in device list (#777)

* add the column of CPU Platform in device list

* Update api.js

* Update solo.js

* Update devutil.js

* Update device-column-service.js

* Update device-list-controller.js
This commit is contained in:
thinkhy
2017-12-16 16:50:25 +08:00
committed by GitHub
parent 3e942a8eaa
commit 2dac3d1bbd
7 changed files with 16 additions and 1 deletions

View File

@@ -195,6 +195,12 @@ module.exports = function DeviceColumnService($filter, gettext) {
return device.abi || ''
}
})
, cpuPlatform: TextCell({
title: gettext('CPU Platform')
, value: function(device) {
return device.cpuPlatform || ''
}
})
, phone: TextCell({
title: gettext('Phone')
, value: function(device) {