Skip to content

Commit

Permalink
test: fix coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffwcx committed Oct 29, 2024
1 parent 264271b commit bfa182f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/five-rivers-try.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'inquirer-select-pro': patch
---

add confirmDelete mode and fix bugs
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const defaultSelectTheme: (multiple: boolean) => SelectTheme = (multiple) => ({
selectedOptions
.map((option) =>
option.focused
? chalk.inverse(option.name || option.value)
? /* v8 ignore next 3 */ chalk.inverse(option.name || option.value)
: option.name || option.value,
)
.join(', '),
Expand Down

0 comments on commit bfa182f

Please sign in to comment.