Fixed the error "project not found" in daily task planning

This commit is contained in:
ashutosh.nehete 2025-04-08 14:58:00 +05:30 committed by Gitea Admin
parent f9c6d1b7f8
commit a78c4b90db

View File

@ -49,7 +49,7 @@ const InfraPlanning = () =>
{!project_listLoader && projects?.filter(project => {!project_listLoader && projects?.filter(project =>
LoggedUser?.projects?.map(Number).includes(project.id)).map((project)=>( LoggedUser?.projects?.map(Number).includes(project.id)).map((project)=>(
<option value={project.id}>{project.name}</option> <option key={project.id} value={project.id}>{project.name}</option>
))} ))}
</select> </select>
</div> </div>