Skip to content

Commit

Permalink
Frontend flex issue
Browse files Browse the repository at this point in the history
Signed-off-by: Emil Balitzki <emil.balitzki@gmail.com>
  • Loading branch information
Corgam committed Jul 14, 2024
1 parent cc9184b commit 4492675
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion frontend/src/components/DataView/DataRow.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@

.subrow-value {
text-align: end;
display: flex !important;
justify-content: end;
}

Expand Down
4 changes: 2 additions & 2 deletions frontend/src/components/DataView/DataRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,8 @@ const DataRow: React.FC<RowProps> = ({ row, currentDatasets }) => {
>
{subItem.key}
</TableCell>
<TableCell size="small" className="subrow-value">
{subItem.value}
<TableCell size="small">
<div className="subrow-value">{subItem.value}</div>
</TableCell>
<TableCell className="subrow-filler" />
</TableRow>
Expand Down

0 comments on commit 4492675

Please # to comment.