mirror of
https://github.com/facebook/lexical.git
synced 2025-08-06 16:39:33 +08:00
Fix OverflowNode configuration (#6027)
Co-authored-by: Bob Ippolito <bob@redivi.com>
This commit is contained in:
@ -69,7 +69,15 @@ export class OverflowNode extends ElementNode {
|
||||
return parent.insertNewAfter(selection, restoreSelection);
|
||||
}
|
||||
|
||||
excludeFromCopy(): boolean {
|
||||
canBeEmpty(): false {
|
||||
return false;
|
||||
}
|
||||
|
||||
isInline(): true {
|
||||
return true;
|
||||
}
|
||||
|
||||
excludeFromCopy(): true {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user