@xterm/xterm
Advanced tools
+2
-2
| { | ||
| "name": "@xterm/xterm", | ||
| "description": "Full xterm terminal, in your browser", | ||
| "version": "6.1.0-beta.279", | ||
| "version": "6.1.0-beta.280", | ||
| "main": "lib/xterm.js", | ||
@@ -122,3 +122,3 @@ "module": "lib/xterm.mjs", | ||
| }, | ||
| "commit": "7c24c580072daea61f607c102d515f37cf2dbb17" | ||
| "commit": "f33f502267455f40e64a89a6a554b8d6beae6284" | ||
| } |
@@ -539,5 +539,10 @@ /** | ||
| const rowElement = this._rowElements[y]; | ||
| if (!rowElement) { | ||
| continue; | ||
| } | ||
| const lineData = buffer.lines.get(row); | ||
| if (!rowElement || !lineData) { | ||
| break; | ||
| if (!lineData) { | ||
| rowElement.replaceChildren(); | ||
| this._setRowBlinkState(y, false); | ||
| continue; | ||
| } | ||
@@ -614,5 +619,10 @@ rowElement.replaceChildren( | ||
| const rowElement = this._rowElements[i]; | ||
| if (!rowElement) { | ||
| continue; | ||
| } | ||
| const bufferline = buffer.lines.get(row); | ||
| if (!rowElement || !bufferline) { | ||
| break; | ||
| if (!bufferline) { | ||
| rowElement.replaceChildren(); | ||
| this._setRowBlinkState(i, false); | ||
| continue; | ||
| } | ||
@@ -619,0 +629,0 @@ rowElement.replaceChildren( |
@@ -9,2 +9,2 @@ /** | ||
| */ | ||
| export const XTERM_VERSION = '6.1.0-beta.279'; | ||
| export const XTERM_VERSION = '6.1.0-beta.280'; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
4748791
0.03%30514
0.04%