diff --git a/src/cli/run.rs b/src/cli/run.rs index 8ce6c5b521..362feb6466 100644 --- a/src/cli/run.rs +++ b/src/cli/run.rs @@ -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)); }