We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 01191c0 + 1e5dfc4 commit 7405057Copy full SHA for 7405057
crates/but-workspace/src/stacks.rs
@@ -228,15 +228,15 @@ pub fn stacks_v3(
228
.collect()
229
}
230
231
- let unapplied_stacks = unapplied_stacks(repo, meta, &info.stacks)?;
232
let mut stacks = match filter {
233
StacksFilter::InWorkspace => into_ui_stacks(repo, info.stacks, meta),
234
StacksFilter::All => {
+ let unapplied_stacks = unapplied_stacks(repo, meta, &info.stacks)?;
235
let mut all_stacks = unapplied_stacks;
236
all_stacks.extend(into_ui_stacks(repo, info.stacks, meta));
237
all_stacks
238
239
- StacksFilter::Unapplied => unapplied_stacks,
+ StacksFilter::Unapplied => unapplied_stacks(repo, meta, &info.stacks)?,
240
};
241
242
let needs_filtering_to_hide_segments_not_checked_out = stacks
0 commit comments