From 5a328a1240cadc88e9443a8cdaf4d5ec075fde7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Mon, 5 Jun 2023 16:49:36 +0300 Subject: [PATCH] Refactor #4024 - For DataTable --- components/lib/datatable/DataTable.d.ts | 4 ++-- components/lib/datatable/TableBody.vue | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/components/lib/datatable/DataTable.d.ts b/components/lib/datatable/DataTable.d.ts index 6dadf7fe230..53fdcd3d2a2 100755 --- a/components/lib/datatable/DataTable.d.ts +++ b/components/lib/datatable/DataTable.d.ts @@ -597,7 +597,7 @@ export interface DataTablePassThroughOptions { /** * Uses to pass attributes to the rowgroup header's DOM element. */ - rowgroupHeader?: DataTablePassThroughOptionType; + rowGroupHeader?: DataTablePassThroughOptionType; /** * Uses to pass attributes to the body row's DOM element. */ @@ -609,7 +609,7 @@ export interface DataTablePassThroughOptions { /** * Uses to pass attributes to the rowgroup footer's DOM element. */ - rowgroupFooter?: DataTablePassThroughOptionType; + rowGroupFooter?: DataTablePassThroughOptionType; /** * Uses to pass attributes to the empty message's DOM element. */ diff --git a/components/lib/datatable/TableBody.vue b/components/lib/datatable/TableBody.vue index 0aa3e75285d..4c671f28d5b 100755 --- a/components/lib/datatable/TableBody.vue +++ b/components/lib/datatable/TableBody.vue @@ -5,10 +5,10 @@