mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
refactor(FE): Display raw age instead of using formatNumber
This commit is contained in:
@@ -119,9 +119,7 @@ const SalesReportTable = ({
|
||||
cell: (props) => {
|
||||
const age = props.row.original.age;
|
||||
const week = props.row.original.week;
|
||||
return age && week
|
||||
? `${formatNumber(age)} hari (${week} minggu)`
|
||||
: '-';
|
||||
return age && week ? `${age} hari (${week} minggu)` : '-';
|
||||
},
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user