@alfresco/adf-core 8.4.0-18643957360 → 8.4.0-18647987466

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13607,8 +13607,6 @@ class ClipboardService {
13607
13607
  copyToClipboard(target, message) {
13608
13608
  if (this.isTargetValid(target)) {
13609
13609
  try {
13610
- target.select();
13611
- target.setSelectionRange(0, target.value.length);
13612
13610
  if (navigator.clipboard) {
13613
13611
  navigator.clipboard.writeText(target.value);
13614
13612
  }