Compare commits

...

2 Commits

Author SHA1 Message Date
Gutts-n
2bbf313489 Fixed error to remove anchor from document 2024-01-25 16:45:39 -03:00
Gutts-n
c26b76368d Fixed error to remove anchor from document 2024-01-25 16:43:47 -03:00
2 changed files with 6 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
---
'@portaljs/components': patch
---
Fixed error to remove anchor from document

View File

@@ -137,7 +137,7 @@ export function BucketViewer({
a.download = data.fileName;
document.body.appendChild(a);
a.click();
document.removeChild(a);
document.body.removeChild(a);
}}
key={i}
onMouseEnter={() => setShowDownloadComponentOnLine(i)}