Skip to content

Commit

Permalink
Merge branch 'master' into feat/schema-summary-validation-message
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Nov 13, 2024
2 parents d7b494b + 597fbdb commit 66f5145
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 2 additions & 2 deletions webapp/views/App/views/Data/ValidationReport/Row/Row.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ const Row = (props) => {

return (
<>
<div>{rowNo}</div>
<div data-value={path}>
<div className="validation-report__row-num-col">{rowNo}</div>
<div className="validation-report__path-col" data-value={path}>
<LabelWithTooltip label={path} />
</div>
<div
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const ValidationReport = () => {
headerProps={{ restParams }}
module="validationReport"
restParams={restParams}
gridTemplateColumns="70px 1fr 2fr 50px"
gridTemplateColumns="50px 1fr 2fr 50px"
rowHeaderComponent={RowHeader}
rowComponent={Row}
onRowClick={onRowClick}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,20 @@
.table__row {
height: unset;
padding: 6px 0;
gap: 1rem;
}
}

.validation-report__row-num-col {
justify-self: right;
}

.validation-report__path-col,
.validation-report__message {
justify-self: left;
}

.validation-report__message {
.validation-field_message {
color: $black;
}
Expand Down

0 comments on commit 66f5145

Please sign in to comment.