diff --git a/ipi-survey-platform/index.html b/ipi-survey-platform/index.html index 960dd47..8cf27b3 100644 --- a/ipi-survey-platform/index.html +++ b/ipi-survey-platform/index.html @@ -4,7 +4,7 @@ - ipi-survey-platform + IIP Survey Platform
diff --git a/ipi-survey-platform/src/pages/Admin/configuration/IsicHsCodes.jsx b/ipi-survey-platform/src/pages/Admin/configuration/IsicHsCodes.jsx index f7d7909..5476b52 100644 --- a/ipi-survey-platform/src/pages/Admin/configuration/IsicHsCodes.jsx +++ b/ipi-survey-platform/src/pages/Admin/configuration/IsicHsCodes.jsx @@ -567,11 +567,11 @@ const IsicHsCodes = () => { key: 'product', sortable: true }, - { - name: Description, - key: 'description', - sortable: true - }, + // { + // name: Description, + // key: 'description', + // sortable: true + // }, { name: Unit, key: 'unit', @@ -658,7 +658,7 @@ const IsicHsCodes = () => { return [ item.code, item.product, - item.description || '-', + // item.description || '-', item.unit,
{item.estimatedMapped}
, displayName, @@ -1318,8 +1318,7 @@ const IsicHsCodes = () => { columnWidths={[ '140px', // HS Code '250px', // Product Name - '200px', // Description - '140px', // Unit + '140px', // Unit '170px', // Establishment Mapped '150px', // Created By '130px', // Last Updated @@ -1327,15 +1326,16 @@ const IsicHsCodes = () => { ]} className="w-full" renderCell={(value, rowIndex, colIndex) => { - // Handle product name and description columns with text wrapping - if (colIndex === 1 || colIndex === 2) { + // Handle product name column with text wrapping + if (colIndex === 1) { return (
{value}
); } - if (colIndex === 5 || colIndex === 6) { + // Handle the last two columns (Created By and Last Updated) + if (colIndex === 4 || colIndex === 5) { return (
{value} @@ -1343,8 +1343,8 @@ const IsicHsCodes = () => { ); } - // Handle action buttons column (index 7) - if (colIndex === 7) { + // Handle action buttons column (index 6 after removing description column) + if (colIndex === 6) { return (