Skip to content

Commit

Permalink
Fix context filter
Browse files Browse the repository at this point in the history
  • Loading branch information
kdheepak committed Feb 17, 2021
1 parent 5356b58 commit be39845
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app.rs
Expand Up @@ -927,7 +927,7 @@ impl TTApp {
task.arg("rc.confirmation=off");
task.arg("export");

let filter = if self.current_context_filter.is_empty() {
let filter = if !self.current_context_filter.is_empty() {
let t = format!("{} {}", self.filter.as_str(), self.current_context_filter);
t
} else {
Expand Down

0 comments on commit be39845

Please sign in to comment.