Skip to content

Commit 73296b9

Browse files
author
Developer
committed
fix: remove extra curly braces in PITRDetailPage column titles
1 parent ad98c9b commit 73296b9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

web/src/pages/pitr/PITRDetailPage.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ export default function PITRDetailPage() {
153153
width: 40,
154154
},
155155
{
156-
title: {t('pitr.mode')},
156+
title: t('pitr.mode'),
157157
dataIndex: 'sqlType',
158158
key: 'sqlType',
159159
width: 80,
@@ -163,13 +163,13 @@ export default function PITRDetailPage() {
163163
},
164164
},
165165
{
166-
title: {t('pitr.targetTable')},
166+
title: t('pitr.targetTable'),
167167
dataIndex: 'tableName',
168168
key: 'tableName',
169169
width: 120,
170170
},
171171
{
172-
title: {t('pitr.sampleSql')},
172+
title: t('pitr.sampleSql'),
173173
dataIndex: 'reverseSql',
174174
key: 'reverseSql',
175175
ellipsis: true,
@@ -180,7 +180,7 @@ export default function PITRDetailPage() {
180180
),
181181
},
182182
{
183-
title: {t('pitr.rowsAffected')},
183+
title: t('pitr.rowsAffected'),
184184
dataIndex: 'rowsAffected',
185185
key: 'rowsAffected',
186186
width: 60,

0 commit comments

Comments
 (0)