Merge pull request #170 from nickwynja/filter-space

Append space to filter input
This commit is contained in:
Dheepak Krishnamurthy 2021-04-01 08:01:57 -06:00 committed by GitHub
commit ad542cd8e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -420,10 +420,11 @@ impl Config {
} }
async fn get_filter() -> String { async fn get_filter() -> String {
Self::get_config("report.next.filter") let filter = Self::get_config("report.next.filter")
.await .await
.context("Unable to parse `task show report.next.filter`.") .context("Unable to parse `task show report.next.filter`.")
.unwrap() .unwrap();
format!("{} ", filter)
} }
async fn get_data_location() -> String { async fn get_data_location() -> String {