added isSystem property in hiddenColumns because this field will broken table.

This commit is contained in:
Pramod Mahajan 2025-05-08 18:25:18 +05:30
parent 6c5b62eb40
commit a9cd2097d6

View File

@ -14,6 +14,7 @@ const MasterTable = ({ data, columns, loading, handleModalData }) => {
"tenant",
"tenantId",
"checkLists",
"isSystem"
];
const safeData = Array.isArray(data) ? data : [];
@ -81,7 +82,7 @@ const MasterTable = ({ data, columns, loading, handleModalData }) => {
<tbody>
{currentItems.length > 0 ? (
currentItems.map((item, index) => (
<tr key={index}>
<tr key={index} >
<td style={{ width: "20px" }}>
<i className="bx bx-right-arrow-alt"></i>
</td>