Skip to content

Commit b7089b0

Browse files
committed
Fix numbers not allowed in ev3devBrowser.env variable names
1 parent a07177e commit b7089b0

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
1010
interactive terminal instead of output pane
1111
### Fixed
1212
- Fix debugger restart button not working
13+
- Fix numbers not allowed in `ev3devBrowser.env` variable names
1314
### Changed
1415
- SSH shell no longer requires native executable on Windows
1516

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"scope": "window",
4242
"type": "object",
4343
"patternProperties": {
44-
"[A-Za-z_]{1,}": {
44+
"[A-Za-z0-9_]{1,}": {
4545
"type": "string"
4646
}
4747
},

0 commit comments

Comments
 (0)