mirror of https://github.com/rancher/ui.git
Remove Operating System variables
https://github.com/rancher/rancher/issues/12776
This commit is contained in:
parent
abe4628464
commit
c70096e262
|
|
@ -61,10 +61,6 @@ export default Component.extend({
|
||||||
key: 'systemInfoSection.kernelVersion',
|
key: 'systemInfoSection.kernelVersion',
|
||||||
value: get(os, 'kernelVersion'),
|
value: get(os, 'kernelVersion'),
|
||||||
});
|
});
|
||||||
array.push({
|
|
||||||
key: 'systemInfoSection.operatingSystem',
|
|
||||||
value: get(os, 'operatingSystem'),
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
if (arch) {
|
if (arch) {
|
||||||
array.push({
|
array.push({
|
||||||
|
|
@ -72,12 +68,6 @@ export default Component.extend({
|
||||||
value: arch,
|
value: arch,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
if (osType) {
|
|
||||||
array.push({
|
|
||||||
key: 'systemInfoSection.osType',
|
|
||||||
value: osType,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
return array;
|
return array;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue