function isMatching()

in src/app/configuration/component/project-select.js [31:33]


function isMatching(project, query) {
  return !query || query === '' || project.path.toLowerCase().includes(query.toLowerCase());
}