mirror of
https://github.com/kdheepak/taskwarrior-tui.git
synced 2025-08-26 12:17:19 +02:00
Merge pull request #132 from brightpuddle/master
This commit is contained in:
commit
d87e9fd4a4
2 changed files with 2 additions and 2 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -30,7 +30,7 @@ jobs:
|
||||||
profile: minimal
|
profile: minimal
|
||||||
toolchain: stable
|
toolchain: stable
|
||||||
override: true
|
override: true
|
||||||
- run: sudo apt-get update && sudo apt-get install -y taskwarrior taskd
|
- run: sudo apt-get update && sudo apt-get install -y taskwarrior
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
repository: kdheepak/taskwarrior-testdata
|
repository: kdheepak/taskwarrior-testdata
|
||||||
|
|
|
@ -975,7 +975,7 @@ impl TTApp {
|
||||||
task.arg("export");
|
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);
|
let t = format!("{} '\\({}\\)'", self.filter.as_str(), self.current_context_filter);
|
||||||
t
|
t
|
||||||
} else {
|
} else {
|
||||||
self.filter.as_str().into()
|
self.filter.as_str().into()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue