Skip to content

Commit

Permalink
fixed completion
Browse files Browse the repository at this point in the history
  • Loading branch information
ecmel committed Dec 28, 2023
1 parent 9d5933f commit 1488205
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to the extension will be documented in this file.

## [1.14.0] - 2023-12-28
## [1.14.1] - 2023-12-28

- Added glob support for local files.
- Initial support for lit css.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-html-css",
"displayName": "HTML CSS Support",
"description": "CSS Intellisense for HTML",
"version": "1.14.0",
"version": "1.14.1",
"license": "MIT",
"publisher": "ecmel",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/completion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ export class SelectorCompletionItemProvider
for (const value of this.cache.values()) {
for (const item of value) {
const target = item.kind === CompletionItemKind.Value ? ids : classes;
target.set(item.label.toString(), item);
target.set(item.label as string, item);
}
}

Expand Down

0 comments on commit 1488205

Please sign in to comment.