mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-08-05 13:43:48 -07:00
Prevent Uncaught TypeError
- Cannot read property 'isWrapped' on Linkifier
This commit is contained in:
+9
-1
@@ -169,10 +169,18 @@ export class Linkifier extends EventEmitter implements ILinkifier {
|
||||
return;
|
||||
}
|
||||
// If the first row is wrapped, backtrack to find the origin row and linkify that
|
||||
let line = (<any>this._terminal.buffer.lines.get(absoluteRowIndex));
|
||||
|
||||
do {
|
||||
rowIndex--;
|
||||
absoluteRowIndex--;
|
||||
} while ((<any>this._terminal.buffer.lines.get(absoluteRowIndex)).isWrapped);
|
||||
line = (<any>this._terminal.buffer.lines.get(absoluteRowIndex));
|
||||
|
||||
if (!line) {
|
||||
return;
|
||||
}
|
||||
|
||||
} while (line.isWrapped);
|
||||
}
|
||||
|
||||
// Construct full unwrapped line text
|
||||
|
||||
Reference in New Issue
Block a user