diff --git a/apps/admin/src/components/AdminPlayerRowActions.vue b/apps/admin/src/components/AdminPlayerRowActions.vue index c571be9..6862eb1 100644 --- a/apps/admin/src/components/AdminPlayerRowActions.vue +++ b/apps/admin/src/components/AdminPlayerRowActions.vue @@ -13,10 +13,20 @@ withDefaults( row: PlayerActionRow; showDetail?: boolean; showLedger?: boolean; + showEdit?: boolean; + showDeposit?: boolean; + showWithdraw?: boolean; + showFreeze?: boolean; + showDelete?: boolean; }>(), { showDetail: true, showLedger: true, + showEdit: true, + showDeposit: true, + showWithdraw: true, + showFreeze: true, + showDelete: true, }, ); @@ -42,13 +52,13 @@ const { t } = useAdminLocale(); {{ t('user.action.ledger_short') }} - {{ t('common.edit') }} - {{ t('common.topup') }} - + {{ t('common.edit') }} + {{ t('common.topup') }} + {{ t('agent_portal.withdraw_btn_label') }} {{ t('common.freeze') }} - + {{ t('common.unfreeze') }} - + {{ t('common.delete') }} diff --git a/apps/admin/src/components/DashboardSubNav.vue b/apps/admin/src/components/DashboardSubNav.vue index 25c0fdf..f359cfd 100644 --- a/apps/admin/src/components/DashboardSubNav.vue +++ b/apps/admin/src/components/DashboardSubNav.vue @@ -1,9 +1,13 @@