Skip to content

Commit a3ea77d

Browse files
authoredMar 2, 2020
autocomplete: fix bold symbols (#255)
1 parent 71e1512 commit a3ea77d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/elements/autocomplete.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ class AutocompletePrompt extends Prompt {
216216
let { startIndex, endIndex } = entriesToDisplay(this.select, this.choices.length, this.limit);
217217

218218
this.outputText = [
219-
color.bold(style.symbol(this.done, this.aborted)),
219+
style.symbol(this.done, this.aborted),
220220
color.bold(this.msg),
221221
style.delimiter(this.completing),
222222
this.done && this.suggestions[this.select]

0 commit comments

Comments
 (0)
Please sign in to comment.