Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mcartmel authored and scroix committed Apr 1, 2024
1 parent b4eea85 commit f996063
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nodel-webui-js/src/nodel.js
Original file line number Diff line number Diff line change
Expand Up @@ -1049,7 +1049,7 @@ var setEvents = function(){
$('body').on("keyup", ".nodel-console .consoleinput", function(e) {
var charCode = e.charCode || e.keyCode;
if (charCode === 13) {
var text = $(this).text();
var text = $(this).text().replace(/\u00A0/g, ' ');
if(text){
$(this).empty();
var arg = JSON.stringify({code: text});
Expand Down

0 comments on commit f996063

Please sign in to comment.