Skip to content
Snippets Groups Projects
Commit aff9ad15 authored by ausvat's avatar ausvat
Browse files

Updated Select Query box

parent 69341f54
No related branches found
No related tags found
No related merge requests found
......@@ -368,8 +368,8 @@ export default function SearchAndFilterInput(props) {
{pyGeoAPIFlag && (
<div className="panelSection panelBar">
<span>
<FormControl sx={{ minWidth: 150 }}>
<InputLabel id="selectQueryLabel" size="small">
<FormControl sx={{ minWidth: 150 , minHeight: 40}}>
<InputLabel id="selectQueryLabel" size="small" style={{paddingTop: '0.2rem'}}>
Select Query
</InputLabel>
<Select
......@@ -379,6 +379,7 @@ export default function SearchAndFilterInput(props) {
value={selectedOptions}
onChange={handleOptionChange}
renderValue={(selected) => selected.join(', ')}
style={{height: 43}}
>
{queryableTitles.map((title) => (
<MenuItem key={title} value={title}>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment