From af50d8054116bb753e86d3cbad88d3a5dafd31b5 Mon Sep 17 00:00:00 2001 From: Gabe Cohen Date: Thu, 18 Jan 2018 14:29:13 -0600 Subject: [PATCH] Fix #171 --- CliClient/app/autocompletion.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CliClient/app/autocompletion.js b/CliClient/app/autocompletion.js index cca40e2061..a03f1c5e5e 100644 --- a/CliClient/app/autocompletion.js +++ b/CliClient/app/autocompletion.js @@ -48,7 +48,7 @@ async function handleAutocompletionPromise(line) { if (options.length > 1 && options[1].indexOf(next) === 0) { l.push(options[1]); } else if (options[0].indexOf(next) === 0) { - l.push(options[2]); + l.push(options[0]); } } if (l.length === 0) {