From dcce14cf74072bc8aa4b7d6eb33dc40d29ee992a Mon Sep 17 00:00:00 2001 From: Mars <3361409208a@gmail.com> Date: Tue, 23 Jun 2026 14:00:39 +0800 Subject: [PATCH] =?UTF-8?q?fix(admin):=20=E6=81=A2=E5=A4=8D=20Settlement?= =?UTF-8?q?=20adminSelectionLabel=20=E5=AF=BC=E5=85=A5=E5=B9=B6=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3=20walletRemarkLabel=20=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/admin/src/utils/walletTx.ts | 2 +- apps/admin/src/views/Settlement.vue | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/admin/src/utils/walletTx.ts b/apps/admin/src/utils/walletTx.ts index 0d714e7..655a868 100644 --- a/apps/admin/src/utils/walletTx.ts +++ b/apps/admin/src/utils/walletTx.ts @@ -82,7 +82,7 @@ const WALLET_REMARK_EXACT: Record = { export function walletRemarkLabel( remark: string | null | undefined, transactionType: string, - t: (key: string, params?: Record) => string, + t: (key: string, params?: Record) => string, ): string { const raw = remark?.trim(); if (!raw) { diff --git a/apps/admin/src/views/Settlement.vue b/apps/admin/src/views/Settlement.vue index 92bf6ea..aefb355 100644 --- a/apps/admin/src/views/Settlement.vue +++ b/apps/admin/src/views/Settlement.vue @@ -24,6 +24,7 @@ import { betResultLabel, } from '../utils/bet-labels'; import { markAdminListStale } from '../utils/adminListStale'; +import { adminSelectionLabel } from '../utils/adminSelectionLabel'; import type { AdminMatchDetail } from './match-form'; import AdminSubNav from '../components/AdminSubNav.vue';