Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
mmmateos authored and andresmr committed Dec 20, 2023
1 parent 0896f45 commit dd6c627
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,14 +81,14 @@ class TableDataToTableModelMapper(val mapFieldValueToUser: MapFieldValueToUser)
rowHeader = RowHeader(
id = indicatorName,
title = indicatorName!!,
row = tableData.keys.indexOf(indicatorName)
row = tableData.keys.indexOf(indicatorName),
),
values = mapOf(
0 to TableCell(
id = indicatorName,
column = 0,
value = indicatorValue,
editable = false
editable = false,
),
),
)
Expand Down

0 comments on commit dd6c627

Please sign in to comment.