remove select key

This commit is contained in:
doapp-ryanp 2015-09-28 08:32:29 -05:00
parent 6ea1fdd8e6
commit 3aaeb85adf

View File

@ -112,7 +112,7 @@ CMD.prototype._promptStage = Promise.method(function() {
var choices = [];
for (var i = 0; i < stages.length; i++) {
choices.push({
key: (i + 1) + ') ',
key: '',
value: stages[i],
label: stages[i]
});