Skip to content

Commit

Permalink
don't stringify tt before applying it, #106396
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed Oct 5, 2020
1 parent 1cdede1 commit 8140033
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ class CodeCellDragImageRenderer {
return null;
}

editorContainer.innerHTML = String(richEditorText);
editorContainer.innerHTML = richEditorText as unknown as string;

return dragImageContainer;
}
Expand Down

0 comments on commit 8140033

Please sign in to comment.