diff --git a/sge-frontend/src/redux/actions/mainDataTables/index.js b/sge-frontend/src/redux/actions/mainDataTables/index.js
index e3999b1..8f34bc4 100644
--- a/sge-frontend/src/redux/actions/mainDataTables/index.js
+++ b/sge-frontend/src/redux/actions/mainDataTables/index.js
@@ -17,6 +17,7 @@ export const getVMEmissionSummary = (datacenterId) => {
totalEmission
createdDate
physicalMachine
+ cloudSystem
dataCenter
co2
ch4
diff --git a/sge-frontend/src/views/DataSet/MainDataTables.js b/sge-frontend/src/views/DataSet/MainDataTables.js
index 88ce4fa..d2f1edf 100644
--- a/sge-frontend/src/views/DataSet/MainDataTables.js
+++ b/sge-frontend/src/views/DataSet/MainDataTables.js
@@ -67,6 +67,7 @@ function MainDataTables() {
{ header: t("Total Emission"), accessorKey: "totalEmission", Cell: ({ cell }) => {editNumbers(cell.getValue()) || "-"} },
{ header: t("Created Date"), accessorKey: "createdDate", Cell: ({ cell }) => ({cell.getValue() ? new Date(cell.getValue()).toLocaleString() : "-"}), sortable: true },
{ header: t("Physical Machine"), accessorKey: "physicalMachine", Cell: ({ cell }) => {cell.getValue() || "-"} },
+ { header: t("Cloud System"), accessorKey: "cloudSystem", Cell: ({ cell }) => {cell.getValue() || "-"} },
{ header: t("Data Center"), accessorKey: "dataCenter", Cell: ({ cell }) => {cell.getValue() || "-"} },
{ header: "CO2", accessorKey: "co2", Cell: ({ cell }) => {editNumbers(cell.getValue()) || "-"} },
{ header: "CH4", accessorKey: "ch4", Cell: ({ cell }) => {editNumbers(cell.getValue()) || "-"} },