fixed CopyIcon empty value check

This commit is contained in:
Gani Georgiev
2024-10-09 23:27:11 +03:00
parent 2b0c48c265
commit f7a6097464
27 changed files with 35 additions and 35 deletions
+1 -1
View File
@@ -12,7 +12,7 @@
let copyTimeout;
function copy() {
if (!value) {
if (CommonHelper.isEmpty(value)) {
return;
}