Merge pull request #13694 from Snuffleupagus/handleBreak-rm-extra-target

XFA - remove unnecessary check in the `handleBreak` function (PR 13687 follow-up)
This commit is contained in:
Jonas Jenwald 2021-07-08 09:58:29 +02:00 committed by GitHub
commit 418880d473
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -176,7 +176,7 @@ function handleBreak(node) {
if (!target) {
return false;
}
target = target ? target[0] : target;
target = target[0];
}
const { currentPageArea, currentContentArea } = root[$extra];