From 6451b14eb596ecb2f56de1e5dc94ae8e98ad94d2 Mon Sep 17 00:00:00 2001 From: ivwfd323 <15370960+ivwfd323@user.noreply.gitee.com> Date: Tue, 18 Feb 2025 06:28:39 +0000 Subject: [PATCH] =?UTF-8?q?=E5=AD=97=E6=AE=B5=E9=94=99=E8=AF=AF=E5=AF=BC?= =?UTF-8?q?=E8=87=B4=E6=98=BE=E7=A4=BA=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- harmony_dialog/src/main/ets/component/DatePickerDialogView.ets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/harmony_dialog/src/main/ets/component/DatePickerDialogView.ets b/harmony_dialog/src/main/ets/component/DatePickerDialogView.ets index cdfcbb6..e8e4043 100644 --- a/harmony_dialog/src/main/ets/component/DatePickerDialogView.ets +++ b/harmony_dialog/src/main/ets/component/DatePickerDialogView.ets @@ -216,7 +216,7 @@ export struct DatePickerDialogView { this.onChangeData(3); }) TextPicker({ range: this.hours, value: this.hour }) - .TextPickerStyle(this.options, this.containYear, 9) + .TextPickerStyle(this.options, this.containHour, 9) .onChange((value) => { this.hour = value as string; this.onChangeData(4); -- Gitee