|
|
@@ -105,6 +105,7 @@ const SearchDemandNoteForm = ({ applySearch, orgComboData, searchCriteria, issue |
|
|
|
{...register("issueId")} |
|
|
|
disablePortal |
|
|
|
id="issueId" |
|
|
|
size="small" |
|
|
|
options={issueCombo} |
|
|
|
value={issueSelected} |
|
|
|
inputValue={(issueSelected?.id) ? getIssueLabel(issueSelected) : ""} |
|
|
@@ -145,6 +146,7 @@ const SearchDemandNoteForm = ({ applySearch, orgComboData, searchCriteria, issue |
|
|
|
{...register("orgId")} |
|
|
|
disablePortal |
|
|
|
id="orgId" |
|
|
|
size="small" |
|
|
|
options={orgCombo} |
|
|
|
value={orgSelected} |
|
|
|
inputValue={(orgSelected?.label) ? orgSelected?.label : ""} |
|
|
@@ -220,6 +222,7 @@ const SearchDemandNoteForm = ({ applySearch, orgComboData, searchCriteria, issue |
|
|
|
<Grid item xs={9} s={6} md={5} lg={3} sx={{ ml: 3, mr: 3, mb: 3 }}> |
|
|
|
<Autocomplete |
|
|
|
multiple |
|
|
|
size="small" |
|
|
|
{...register("status")} |
|
|
|
id="status" |
|
|
|
options={ComboData.denmandNoteStatus} |
|
|
@@ -258,20 +261,17 @@ const SearchDemandNoteForm = ({ applySearch, orgComboData, searchCriteria, issue |
|
|
|
|
|
|
|
{/*last row*/} |
|
|
|
<Grid container maxWidth justifyContent="flex-end"> |
|
|
|
<Grid item sx={{ ml: 3, mr: 3, mb: 3, mt: 3 }}> |
|
|
|
<Grid item sx={{ ml: 3, mr: 3 }}> |
|
|
|
<Button |
|
|
|
size="large" |
|
|
|
variant="contained" |
|
|
|
onClick={resetForm} |
|
|
|
sx={{ |
|
|
|
textTransform: 'capitalize', |
|
|
|
alignItems: 'end' |
|
|
|
}}> |
|
|
|
> |
|
|
|
<Typography variant="h5">Clear</Typography> |
|
|
|
</Button> |
|
|
|
</Grid> |
|
|
|
|
|
|
|
<Grid item sx={{ ml: 3, mr: 3, mb: 3, mt: 3 }}> |
|
|
|
<Grid item sx={{ ml: 3, mr: 3}}> |
|
|
|
<Button |
|
|
|
size="large" |
|
|
|
variant="contained" |
|
|
|