From c70096e26240c60dfd4d3a52e23911a47126b23c Mon Sep 17 00:00:00 2001 From: loganhz Date: Wed, 18 Apr 2018 13:17:13 +0800 Subject: [PATCH] Remove Operating System variables https://github.com/rancher/rancher/issues/12776 --- .../addon/components/system-info-section/component.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lib/shared/addon/components/system-info-section/component.js b/lib/shared/addon/components/system-info-section/component.js index a573ec01e..cd8effd9b 100644 --- a/lib/shared/addon/components/system-info-section/component.js +++ b/lib/shared/addon/components/system-info-section/component.js @@ -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; } });