Merge branch 'feat/total-price-recording' into 'development'

show total price when pending is 0

See merge request mbugroup/lti-web-client!512
This commit is contained in:
Giovanni Gabriel Septriadi
2026-06-10 14:17:38 +00:00
@@ -1524,6 +1524,13 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => {
</span> </span>
); );
} }
if (showTotalPrice) {
return (
<span className='text-sm text-gray-600 whitespace-nowrap'>
(total harga: {totalPrice})
</span>
);
}
return null; return null;
} }