Skip to content

Commit

Permalink
minor setup styling
Browse files Browse the repository at this point in the history
  • Loading branch information
enjalot committed Feb 13, 2024
1 parent 9515a3d commit a4a8839
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
8 changes: 8 additions & 0 deletions web/src/pages/Setup.css
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,10 @@

}

/* .dataset--setup label {
width: 120px;
} */

.dataset--setup-umaps-list, .dataset--setup-clusters-list {
display: flex;
flex-direction: row;
Expand Down Expand Up @@ -268,3 +272,7 @@

}

.dataset--setup .job-history {
padding: 6px 0;
}

4 changes: 3 additions & 1 deletion web/src/pages/Setup.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,6 @@ function Setup() {
<div className="dataset--setup-info">
<h3>{datasetId}</h3>
<div className="dataset--setup-info-content">
<Link to={`/datasets/${dataset?.id}/jobs`}> Job history</Link><br/>
{ scope ? <Link to={`/datasets/${dataset?.id}/explore/${scope?.id}`}> Explore {scope.label} ({scope.id})</Link> : null }
<br/>
{dataset.length} rows <br/>
Expand All @@ -335,6 +334,9 @@ function Setup() {
))}
</select>
</div>
<div className="job-history">
<Link to={`/datasets/${dataset?.id}/jobs`}> Job history</Link><br/>
</div>
</div>
</div>

Expand Down

0 comments on commit a4a8839

Please sign in to comment.