Skip to content

Commit

Permalink
fix(monitoraggio-caricamenti): fix filtraggio progetto 20241029
Browse files Browse the repository at this point in the history
  • Loading branch information
federico-tocci-dxc committed Oct 29, 2024
1 parent 45093ca commit 4449663
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import { useDispatch, useSelector } from 'react-redux';
import { selectEntityFiltersOptions } from '../../../redux/features/administrativeArea/administrativeAreaSlice';
import { GetAllEntityValues, GetProgettiDropdownList, GetProgrammiDropdownList } from '../../../redux/features/administrativeArea/administrativeAreaThunk';
import './monitoring.scss';
import { use } from 'i18next';

export type OptionType = {
value: string;
Expand Down Expand Up @@ -250,7 +249,7 @@ const MonitoringSearchFilters: React.FC<MonitoringSearchFilterI> = ({ formValues
}
if(name?.name === 'ente'){
retrieveProgramma(formValues.intervento.value, option.value);
retrieveProgetto(formValues.intervento.value, 0, option.value);
retrieveProgetto(formValues.intervento.value, Number(formValues.programma.value), option.value);
}
};

Expand Down

0 comments on commit 4449663

Please sign in to comment.