refactor(FE-435): Add required asterisks to table headers

This commit is contained in:
rstubryan
2025-12-30 17:54:03 +07:00
parent 2c5168badf
commit 7daca04cc1
@@ -145,9 +145,15 @@ const ExpenseRequestKandangDetailExpense: React.FC<
<table className='table'>
<thead>
<tr>
<th>Nonstock</th>
<th>Total Kuantitas</th>
<th>Harga Satuan</th>
<th className='after:content-["*"] after:text-red-500 after:ml-0.5'>
Nonstock
</th>
<th className='after:content-["*"] after:text-red-500 after:ml-0.5'>
Total Kuantitas
</th>
<th className='after:content-["*"] after:text-red-500 after:ml-0.5'>
Harga Satuan
</th>
<th>Catatan</th>
{type !== 'detail' && <th>Aksi</th>}
</tr>