Skip to content

Commit 35af0ed

Browse files
committed
Fix typo with WebSocketPort raised by @MitchBradley
1 parent 4d2370f commit 35af0ed

File tree

12 files changed

+36
-35
lines changed

12 files changed

+36
-35
lines changed

dist/grbl/debug/index.html.gz

-5 Bytes
Binary file not shown.

dist/grbl/languages/fr.json.gz

0 Bytes
Binary file not shown.

dist/grbl/languages/zh_cn.json.gz

0 Bytes
Binary file not shown.

dist/grbl/production/index.html.gz

-5 Bytes
Binary file not shown.

dist/printer/debug/index.html.gz

-6 Bytes
Binary file not shown.

dist/printer/languages/fr.json.gz

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
-6 Bytes
Binary file not shown.

src/components/settings/webui.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -436,11 +436,11 @@ function loadConfigSuccess(responseText) {
436436
try {
437437
data = JSON.parse(responseText)
438438
applyConfig(data)
439-
if (data.WebSocketIP && data.WebCommunication && data.WebSocketport) {
439+
if (data.WebSocketIP && data.WebCommunication && data.WebSocketPort) {
440440
setupWebSocket(
441441
data.WebCommunication,
442442
document.location.hostname,
443-
data.WebSocketport
443+
data.WebSocketPort
444444
)
445445
}
446446
} catch (e) {

src/components/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
*/
2020
import { h } from "preact"
2121

22-
export const Esp3dVersion = () => <span>3.0.0.86</span>
22+
export const Esp3dVersion = () => <span>3.0.0.87</span>

0 commit comments

Comments
 (0)