Skip to content

Commit 4d5de1b

Browse files
committed
Fix const -> let
1 parent 2c7fef8 commit 4d5de1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web-portal/client/js/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ function startSession (interlispOrXterm) {
129129
const medleyExec = document.getElementById("interlisp_rb").checked ? "inter" : "common";
130130
const startScriptUrl =
131131
(function() {
132-
const ss = document.getElementById("start_script_url").value;
132+
let ss = document.getElementById("start_script_url").value;
133133
if (ss != "") {
134134
if (ss.includes("%2F")) ss = decodeURIComponent(ss);
135135
return encodeURIComponent(ss);

0 commit comments

Comments
 (0)