Skip to content

Commit

Permalink
feat: filter now matches on stack name as well fixes: #72
Browse files Browse the repository at this point in the history
  • Loading branch information
cablehead committed Jun 13, 2024
1 parent f120b79 commit 6868beb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-tauri/src/view.rs
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ impl View {
false
})
.collect();
if item.children.is_empty() {
if item.children.is_empty() && !matches.contains(&item.hash) {
return None;
}
} else if !matches.contains(&item.hash) {
Expand Down

0 comments on commit 6868beb

Please sign in to comment.