added msg if data not exist

This commit is contained in:
pramod mahajan 2025-07-25 19:59:03 +05:30
parent 4123a5ca1e
commit 41d3230325

View File

@ -301,6 +301,12 @@ const ExpenseList = ({filters}) => {
</>
)
)}
{!isInitialLoading && items.length === 0 && <tr rowSpan={8} style={{height:"200px"}}>
<td colSpan={8}>
No Expnese Found
</td>
</tr>}
</tbody>
</table>
</div>