Fixed an issue where the user can not paste the updated table header in safari 12 and 13 browsers. Fixes #4815

This commit is contained in:
Nikhil Mohite
2021-08-30 14:46:42 +05:30
committed by Akshay Joshi
parent b764046587
commit 22f20a38ec
4 changed files with 4 additions and 4 deletions

View File

@@ -49,7 +49,7 @@ define(['sources/gettext', 'alertify'], function (gettext, alertify) {
textArea.style.background = 'transparent';
document.body.appendChild(textArea);
textArea.textContent = text;
textArea.select();
var copyTextToClipboardHandler = function(e) {