Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove fixed column size for samples nav #1528

Merged
merged 1 commit into from
Jan 27, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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">
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

While at it, I removed this className reference, since the css class, does not seem to exist anymore

<Col sm={5} className="d-flex">
<Row className="gap-2">
<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
Loading