Skip to content

Commit

Permalink
Misc fixes1
Browse files Browse the repository at this point in the history
  • Loading branch information
testower committed Oct 31, 2023
1 parent 1a43790 commit ba58614
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const MultiSelectDropdown = <T = unknown,>({ label, options, values, onChange }:
type="text"
id="multiSelectDropdown"
size="sm"
value={values.join(', ')}
value={values.length > 0 ? values.join(', ') : 'Not selected'}
onClick={toggleDropdown}
onChange={() => {}}
/>
Expand Down
4 changes: 2 additions & 2 deletions client-next/src/components/SearchBar/NumTripPatternsInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ export function NumTripPatternsInput({
}) {
return (
<Form.Group>
<Form.Label column="sm" htmlFor="searchWindowInput">
<Form.Label column="sm" htmlFor="numTripPatternsInput">
Number of trip patterns
</Form.Label>
<Form.Control
type="number"
id="searchWindowInput"
id="numTripPatternsInput"
size="sm"
placeholder="12"
min={1}
Expand Down

0 comments on commit ba58614

Please sign in to comment.