Reputation: 11
I am not able to PASTE text on React-Quill Editor on Safari(Only) While I am able to COPY , CUT, REDO and UNDO the text using shortcut keys.
Upvotes: 1
Views: 1546
Reputation: 11
Try to set -webkit-user-select: text
to the .ql-clipboard
div
element
.ql-clipboard {
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
}
Upvotes: 1