diff --git a/src/CompanyManagement.js b/src/CompanyManagement.js
index 6c5407b98..4d9dc51c5 100644
--- a/src/CompanyManagement.js
+++ b/src/CompanyManagement.js
@@ -2334,10 +2334,10 @@ Warehouse.prototype.createMaterialUI = function(mat, matName, parentRefs) {
//If Market Research upgrades are unlocked, add competition and demand info
var cmpAndDmdText = "";
if (company.unlockUpgrades[2] === 1) {
- cmpAndDmdText += "
Competition: " + formatNumber(mat.cmp, 3);
+ cmpAndDmdText += "
Demand: " + formatNumber(mat.dmd, 3);
}
if (company.unlockUpgrades[3] === 1) {
- cmpAndDmdText += "
Demand: " + formatNumber(mat.dmd, 3);
+ cmpAndDmdText += "
Competition: " + formatNumber(mat.cmp, 3);
}
var innerTxt = "
" + mat.name + ": " + formatNumber(mat.qty, 3) + "(" + formatNumber(totalGain, 3) + "/s)" +