Skip to content

Commit

Permalink
[bulk-textarea] UIK-3159
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyabrower committed Jan 14, 2025
1 parent 1a690a6 commit 41952cc
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,9 @@ class InputField extends Component<InputFieldProps, {}, State, typeof InputField
emptyParagraph.innerHTML = this.emptyRowValue;
}

this.setSelection(emptyParagraph, 0, 0);
if (emptyParagraph) {
this.setSelection(emptyParagraph, 0, 0);
}
}
}

Expand Down

0 comments on commit 41952cc

Please sign in to comment.