Skip to content

Commit

Permalink
Fixed a bug that sometimes prevented a name exist check from working.
Browse files Browse the repository at this point in the history
  • Loading branch information
Angelmaneuver committed Aug 24, 2024
1 parent a66ea0f commit 0cd2d18
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 1.0.2

- Fixed a bug that sometimes prevented a name exist check from working

## 1.0.1

- Fixed incorrect initial value for confirmation, autoRun and singleton when editing terminal commands
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ abstract class AbstractSelectLabelGuide extends AbstractQuickPickSelectGuide {
? {
key: this.className,
state: { step: this.step },
args: [SELECTION_ITEM.all, this.type],
args: [SELECTION_ITEM.all, this.type, this.keys],
}
: undefined;
}
Expand Down

0 comments on commit 0cd2d18

Please sign in to comment.