mirror of
https://github.com/kdheepak/taskwarrior-tui.git
synced 2025-08-25 08:47:18 +02:00
Merge pull request #170 from nickwynja/filter-space
Append space to filter input
This commit is contained in:
commit
ad542cd8e9
1 changed files with 3 additions and 2 deletions
|
@ -420,10 +420,11 @@ impl Config {
|
|||
}
|
||||
|
||||
async fn get_filter() -> String {
|
||||
Self::get_config("report.next.filter")
|
||||
let filter = Self::get_config("report.next.filter")
|
||||
.await
|
||||
.context("Unable to parse `task show report.next.filter`.")
|
||||
.unwrap()
|
||||
.unwrap();
|
||||
format!("{} ", filter)
|
||||
}
|
||||
|
||||
async fn get_data_location() -> String {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue