Skip to content

Commit 89cda93

Browse files
committed
fix cs snippet on js
1 parent db358e5 commit 89cda93

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ Fixed for any bug fixes.
99
Security to invite users to upgrade in case of vulnerabilities.
1010
-->
1111

12+
## 1.6.4 - 2023/02/25
13+
14+
### Fixed
15+
16+
- `cs` string snippet on JS
17+
1218
## 1.6.3 - 2022/12/14
1319

1420
### Fixed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "const-props-snippets",
33
"description": "VS Code Const & Props snippets for JS and TS",
4-
"version": "1.6.3",
4+
"version": "1.6.4",
55
"displayName": "Const & Props Snippets",
66
"publisher": "deinsoftware",
77
"icon": "images/light-icon.png",

snippets/var-js.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
},
77
"constantString": {
88
"prefix": "cs",
9-
"body": "const ${1:name} = '$1'$0",
9+
"body": "const ${1:name} = '$2'$0",
1010
"description": "Constant String"
1111
},
1212
"constantNumber": {

0 commit comments

Comments
 (0)