Skip to content

Commit 93fc53d

Browse files
committed
Merge branch 'main' of https://github.com/circuitpython/web-editor into beta
2 parents 2567808 + 296e059 commit 93fc53d

3 files changed

Lines changed: 19 additions & 18 deletions

File tree

js/common/plotter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export function plotValues(chartObj, serialMessage, bufferSize) {
4848

4949
// handle possible tuple in textLine
5050
if (textLine.startsWith("(") && textLine.endsWith(")")) {
51-
textValues = textLine.substring(1, textLine.length - 1).trim();
51+
let textValues = textLine.substring(1, textLine.length - 1).trim();
5252
// Python tuples can end with a comma, but JS arrays cannot
5353
if (textValues.endsWith(",")) {
5454
textValues = textValues.substring(0, textValues.length - 1);

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"preview": "vite preview"
1010
},
1111
"devDependencies": {
12-
"sass": "^1.92.1",
13-
"vite": "^7.1.5",
12+
"sass": "^1.93.2",
13+
"vite": "^7.1.7",
1414
"vite-plugin-mkcert": "^1.17.8"
1515
},
1616
"dependencies": {
@@ -30,6 +30,6 @@
3030
"webbluetooth": "^3.3.2"
3131
},
3232
"optionalDependencies": {
33-
"@rollup/rollup-linux-x64-gnu": "^4.50.1"
33+
"@rollup/rollup-linux-x64-gnu": "^4.52.0"
3434
}
3535
}

0 commit comments

Comments
 (0)