Skip to content

Commit 1488205

Browse files
committed
fixed completion
1 parent 9d5933f commit 1488205

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
## [1.14.0] - 2023-12-28
5+
## [1.14.1] - 2023-12-28
66

77
- Added glob support for local files.
88
- Initial support for lit css.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-html-css",
33
"displayName": "HTML CSS Support",
44
"description": "CSS Intellisense for HTML",
5-
"version": "1.14.0",
5+
"version": "1.14.1",
66
"license": "MIT",
77
"publisher": "ecmel",
88
"author": {

src/completion.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ export class SelectorCompletionItemProvider
249249
for (const value of this.cache.values()) {
250250
for (const item of value) {
251251
const target = item.kind === CompletionItemKind.Value ? ids : classes;
252-
target.set(item.label.toString(), item);
252+
target.set(item.label as string, item);
253253
}
254254
}
255255

0 commit comments

Comments
 (0)