Compare commits
2 Commits
@portaljs/
...
fix/change
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2bbf313489 | ||
|
|
c26b76368d |
5
.changeset/four-lions-boil.md
Normal file
5
.changeset/four-lions-boil.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@portaljs/components': patch
|
||||
---
|
||||
|
||||
Fixed error to remove anchor from document
|
||||
5
.changeset/proud-schools-rhyme.md
Normal file
5
.changeset/proud-schools-rhyme.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@portaljs/components': patch
|
||||
---
|
||||
|
||||
Changed the download behaviour of the bucket viewer component and removed loading component while downloading
|
||||
@@ -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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@portaljs/components",
|
||||
"version": "0.5.8",
|
||||
"version": "0.5.7",
|
||||
"type": "module",
|
||||
"description": "https://portaljs.org",
|
||||
"keywords": [
|
||||
|
||||
@@ -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)}
|
||||
|
||||
Reference in New Issue
Block a user