Skip to content

Commit af5650b

Browse files
committed
Remove broken link comment about detached node in IE9
1 parent 2866670 commit af5650b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

packages/react-dom/src/client/ReactDOM.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -736,9 +736,8 @@ const DOMRenderer = ReactFiberReconciler({
736736
oldText: string,
737737
newText: string,
738738
): void {
739-
// IE9 will raise an exception if modifying a detached text node
740-
// eslint-disable-next-line
741-
// https://connect.microsoft.com/IE/feedbackdetail/view/944330/invalid-argument-error-when-changing-nodevalue-of-a-text-node-removed-by-setting-innerhtml-on-an-ancestor
739+
// IE9 will raise an exception if modifying the value of a
740+
// detached text node
742741
if (textInstance.parentNode) {
743742
textInstance.nodeValue = newText;
744743
}

0 commit comments

Comments
 (0)