|
@@ -109,7 +109,7 @@ class CodeBox {
|
|
this.outputDOM.value = "";
|
|
this.outputDOM.value = "";
|
|
|
|
|
|
const cbRaw = this.codeBoxDOM.value;
|
|
const cbRaw = this.codeBoxDOM.value;
|
|
- const rows = cbRaw.split("\n").filter((r) => r.length);
|
|
|
|
|
|
+ const rows = cbRaw.split("\n");
|
|
|
|
|
|
let maxRowLength = 0;
|
|
let maxRowLength = 0;
|
|
for(const row of rows) {
|
|
for(const row of rows) {
|