Skip to content

Commit

Permalink
fix(DashboardTableSummaryDetails): rename property in summary row
Browse files Browse the repository at this point in the history
  • Loading branch information
enzo-bitfly committed Jan 15, 2025
1 parent 7c01d98 commit d219720
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,14 @@ const summarySections = computed<SummaryRow[][]>(() => {
const addToSection = (
index: number,
summaryProperty?: SummaryDetailsEfficiencyCombinedProp,
property?: SummaryDetailsEfficiencyCombinedProp,
) => {
if (!summaryProperty) {
if (!property) {
return
}
const title = $t(`dashboard.validator.summary.row.${summaryProperty}`)
const title = $t(`dashboard.validator.summary.row.${property}`)
const row = {
summaryProperty,
property,
title,
}
sections[index].push(row)
Expand Down

0 comments on commit d219720

Please sign in to comment.