Merge pull request #143 from kdheepak/fix-shortcut-out-of-bounds

This commit is contained in:
Dheepak Krishnamurthy 2021-03-18 11:02:51 -06:00 committed by GitHub
commit 9fd5650377
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -87,7 +87,7 @@ impl Config {
fn get_uda_shortcuts() -> Vec<String> {
let mut v = vec![];
for s in 0..9 {
for s in 0..=9 {
let c = format!("uda.taskwarrior-tui.shortcuts.{}", s);
let s = Self::get_config(&c);
v.push(s);