Skip to content

Commit

Permalink
fix: disable filtering by default on mise run
Browse files Browse the repository at this point in the history
Needed until jdx/demand#68
  • Loading branch information
jdx committed Dec 11, 2024
1 parent abdb02c commit 507ee27
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/cli/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -619,8 +619,7 @@ impl Run {
);
let mut s = Select::new("Tasks")
.description("Select a tasks to run")
.filterable(true)
.filtering(true);
.filterable(true);
for t in tasks.values().filter(|t| !t.hide) {
s = s.option(DemandOption::new(&t.name).description(&t.description));
}
Expand Down

0 comments on commit 507ee27

Please sign in to comment.