Skip to content

Commit 19580ed

Browse files
authored
Merge pull request #10238 from gadfort/web-spellcheck
web: mark field as no-spellcheck since commands are not words
2 parents d14d526 + 47252fc commit 19580ed

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/web/src/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ function createTclConsole(container) {
330330
'<div class="tcl-output"></div>' +
331331
'<div class="tcl-input-row">' +
332332
' <span class="tcl-prompt">%</span>' +
333-
' <input class="tcl-input" type="text" placeholder="Enter Tcl command..." />' +
333+
' <input class="tcl-input" type="text" placeholder="Enter Tcl command..." spellcheck="false" autocomplete="off" autocapitalize="none" autocorrect="off"/>' +
334334
'</div>';
335335
container.element.appendChild(el);
336336

0 commit comments

Comments
 (0)