diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-05-12 17:57:33 +0200 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2025-05-12 17:57:49 +0200 |
| commit | 1b54ef6a7da4b2d356a2a33abf98cbb7bf39df2f (patch) | |
| tree | ec86200071d92ecf7390f472e515cc8a40421f1b /src/components | |
| parent | a327ed48c6d14bf2ccaf8fb0fa4b9ea641481748 (diff) | |
Fix bugs, add new setting, make app great again
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/GroupedTable.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/GroupedTable.tsx b/src/components/GroupedTable.tsx index b4f30a7..58bb5ed 100644 --- a/src/components/GroupedTable.tsx +++ b/src/components/GroupedTable.tsx @@ -46,7 +46,7 @@ export const GroupedTable: React.FC<GroupedTable> = ({ data, dataDate }) => { groupedEstimates[line].map((estimate, idx) => ( <tr key={`${line}-${idx}`}> {idx === 0 && ( - <td rowSpan={groupedEstimates[line].length} style={{ verticalAlign: 'top' }}> + <td rowSpan={groupedEstimates[line].length}> <LineIcon line={line} /> </td> )} |
