This commit is contained in:
2026-09-14 08:50:15 +07:00
parent e556654be8
commit 1a13d4e0d7
8 changed files with 60 additions and 24 deletions
+3 -3
View File
@@ -132,13 +132,13 @@ impl SidebarPanel {
.read(cx)
.repos
.iter()
.filter(|path| {
let Some(name) = path.file_name() else {
.filter(|repo| {
let Some(name) = repo.path.file_name() else {
return true;
};
!ids.contains(&identifier_from_name(&name.to_string_lossy()))
})
.cloned()
.map(|repo| repo.path.clone())
.collect()
};