Skip to content

Commit d219720

Browse files
committed
fix(DashboardTableSummaryDetails): rename property in summary row
1 parent 7c01d98 commit d219720

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

frontend/components/dashboard/table/DashboardTableSummaryDetails.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ const summarySections = computed<SummaryRow[][]>(() => {
4848
4949
const addToSection = (
5050
index: number,
51-
summaryProperty?: SummaryDetailsEfficiencyCombinedProp,
51+
property?: SummaryDetailsEfficiencyCombinedProp,
5252
) => {
53-
if (!summaryProperty) {
53+
if (!property) {
5454
return
5555
}
56-
const title = $t(`dashboard.validator.summary.row.${summaryProperty}`)
56+
const title = $t(`dashboard.validator.summary.row.${property}`)
5757
const row = {
58-
summaryProperty,
58+
property,
5959
title,
6060
}
6161
sections[index].push(row)

0 commit comments

Comments
 (0)