Fixed the error "project not found" in daily task planning
This commit is contained in:
parent
f9c6d1b7f8
commit
a78c4b90db
@ -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>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user