Remove Operating System variables

https://github.com/rancher/rancher/issues/12776
This commit is contained in:
loganhz 2018-04-18 13:17:13 +08:00
parent abe4628464
commit c70096e262
1 changed files with 0 additions and 10 deletions

View File

@ -61,10 +61,6 @@ export default Component.extend({
key: 'systemInfoSection.kernelVersion',
value: get(os, 'kernelVersion'),
});
array.push({
key: 'systemInfoSection.operatingSystem',
value: get(os, 'operatingSystem'),
});
}
if (arch) {
array.push({
@ -72,12 +68,6 @@ export default Component.extend({
value: arch,
});
}
if (osType) {
array.push({
key: 'systemInfoSection.osType',
value: osType,
});
}
return array;
}
});