Skip to content

Commit

Permalink
add loader for project reports
Browse files Browse the repository at this point in the history
  • Loading branch information
kartikvirendrar committed Jul 31, 2024
1 parent 933557e commit ad1e21c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/containers/Organization/Project/ProjectReport.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ const ProjectReport = () => {
const SearchProject = useSelector((state) => state.searchList.data);

const handleChangeReportsLevel = (event) => {
setTableData([]);
setreportsLevel(event.target.value);
setlanguageLevelStats("");
setOffset(0);
Expand Down Expand Up @@ -140,7 +141,7 @@ const ProjectReport = () => {
createReportColumns(rawData);

// eslint-disable-next-line
}, [projectReportData, languageLevelsStats, reportsLevel]);
}, [projectReportData, languageLevelsStats]);

const createReportColumns = (rawData) => {
let tempColumns = [];
Expand Down

0 comments on commit ad1e21c

Please sign in to comment.