🐛 fix: Update order_id to order_no in BalanceLogPage and related typings; enhance timezone switch component with additional features and localization updates

This commit is contained in:
web
2025-09-05 08:50:57 -07:00
parent a4de9df1fc
commit ac36075e7b
33 changed files with 287 additions and 66 deletions
@@ -44,9 +44,9 @@ export default function BalanceLogPage() {
cell: ({ row }) => <Display type='currency' value={row.original.amount} />,
},
{
accessorKey: 'order_id',
header: t('column.orderId'),
cell: ({ row }) => <OrderLink orderId={row.original.order_id} />,
accessorKey: 'order_no',
header: t('column.orderNo'),
cell: ({ row }) => <OrderLink orderId={row.original.order_no} />,
},
{
accessorKey: 'balance',