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'> <table className='table'>
<thead> <thead>
<tr> <tr>
<th>Nonstock</th> <th className='after:content-["*"] after:text-red-500 after:ml-0.5'>
<th>Total Kuantitas</th> Nonstock
<th>Harga Satuan</th> </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> <th>Catatan</th>
{type !== 'detail' && <th>Aksi</th>} {type !== 'detail' && <th>Aksi</th>}
</tr> </tr>