Skip to content

Commit

Permalink
remove fixed column size for samples nav
Browse files Browse the repository at this point in the history
  • Loading branch information
walesch-yan committed Jan 23, 2025
1 parent d7fce2d commit 1e02917
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ui/src/containers/SampleListViewContainer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -845,8 +845,8 @@ class SampleListViewContainer extends React.Component {
) : null}
<Card className="samples-grid-table-card">
<Card.Header className="samples-grid-table-card-header">
<Row className="samples-grid-table-row-header">
<Col sm={5} className="d-flex">
<Row>
<Col className="d-flex">
{this.getSynchronizationDropDownList()}
<span style={{ marginLeft: '1.5em' }} />
<Button
Expand Down Expand Up @@ -895,7 +895,7 @@ class SampleListViewContainer extends React.Component {
</Dropdown.Menu>
</Dropdown>
</Col>
<Col sm={5} className="d-flex me-auto">
<Col className="d-flex me-auto">
<Form onSubmit={(evt) => evt.preventDefault()}>
<Form.Group as={Row} className="d-flex">
<Form.Label
Expand Down Expand Up @@ -942,7 +942,7 @@ class SampleListViewContainer extends React.Component {
Add Task to Samples <LuSettings2 />
</Button>
</Col>
<Col className="d-flex justify-content-end" sm={2}>
<Col className="d-flex justify-content-end">
<span style={{ marginLeft: '1em' }} />
<QueueSettings />
<span style={{ marginLeft: '1em' }} />
Expand Down

0 comments on commit 1e02917

Please sign in to comment.