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
5 changed files with 12 additions and 8 deletions

View File

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

View File

@@ -0,0 +1,5 @@
---
'@portaljs/components': patch
---
Changed the download behaviour of the bucket viewer component and removed loading component while downloading

View File

@@ -1,11 +1,5 @@
# @portaljs/components
## 0.5.8
### Patch Changes
- [#1079](https://github.com/datopian/portaljs/pull/1079) [`058d2367`](https://github.com/datopian/portaljs/commit/058d23678a024890f8a6d909ded9fc8fc11cf145) Thanks [@Gutts-n](https://github.com/Gutts-n)! - Changed the download behaviour of the bucket viewer component and removed loading component while downloading
## 0.5.7
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@portaljs/components",
"version": "0.5.8",
"version": "0.5.7",
"type": "module",
"description": "https://portaljs.org",
"keywords": [

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)}