Skip to content

Commit 37839b1

Browse files
author
Zibi Braniecki
committed
Fix lint error in the last commit
1 parent d68a0f8 commit 37839b1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

fluent-dom/src/overlay.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@ function overlayChildNodes(fromFragment, toElement) {
123123
);
124124

125125
// If all else fails, replace the element with its text content.
126-
fromFragment.replaceChild(createTextNodeFromTextContent(childNode), childNode);
126+
fromFragment.replaceChild(
127+
createTextNodeFromTextContent(childNode), childNode);
127128
}
128129

129130
toElement.textContent = "";

0 commit comments

Comments
 (0)