From 8a7e7e487662e39545fca6c571c5e7984465987e Mon Sep 17 00:00:00 2001 From: Kyrielin Date: Thu, 30 Mar 2023 19:49:21 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=20radio=20=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B=E9=97=AE=E9=A2=98=20(#2102)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/radio/type.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/radio/type.ts b/src/radio/type.ts index 128907279a..01de0bad1d 100644 --- a/src/radio/type.ts +++ b/src/radio/type.ts @@ -95,7 +95,7 @@ export interface TdRadioGroupProps { /** * 选中值发生变化时触发 */ - onChange?: (value: T, context: { e: ChangeEvent }) => void; + onChange?: (value: T, context: { e: ChangeEvent }) => void; } export type RadioValue = string | number | boolean;