fix: of undefined name of project (#1231)
This commit is contained in:
parent
27e02825a4
commit
e34a057263
@ -63,9 +63,18 @@ class ProjectsList extends Component {
|
|||||||
if (loading) {
|
if (loading) {
|
||||||
return loadingIcon;
|
return loadingIcon;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const lowerCaseFilter = filter.toLowerCase();
|
||||||
|
const filteredProjects = projects.filter(project =>
|
||||||
|
typeof project.name === 'string' &&
|
||||||
|
(filter === "" || project.name.toLowerCase().includes(lowerCaseFilter))
|
||||||
|
);
|
||||||
|
|
||||||
const body = (
|
const body = (
|
||||||
<tbody id="ProjectList">
|
<tbody id="ProjectList">
|
||||||
{projects.filter(project => (project.name.toLowerCase().includes(filter.toLowerCase()) || filter=="")).map(this.renderTableRow)}
|
{
|
||||||
|
filteredProjects.map(this.renderTableRow)
|
||||||
|
}
|
||||||
</tbody>
|
</tbody>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user