Compare commits
3 Commits
fix/change
...
@portaljs/
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
af11f0cfd5 | ||
|
|
9ae2b31113 | ||
|
|
2bffd130c8 |
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'@portaljs/components': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Fixed error to remove anchor from document
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'@portaljs/components': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Changed the download behaviour of the bucket viewer component and removed loading component while downloading
|
|
||||||
@@ -1,5 +1,11 @@
|
|||||||
# @portaljs/components
|
# @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
|
## 0.5.7
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@portaljs/components",
|
"name": "@portaljs/components",
|
||||||
"version": "0.5.7",
|
"version": "0.5.8",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"description": "https://portaljs.org",
|
"description": "https://portaljs.org",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
|||||||
@@ -137,7 +137,7 @@ export function BucketViewer({
|
|||||||
a.download = data.fileName;
|
a.download = data.fileName;
|
||||||
document.body.appendChild(a);
|
document.body.appendChild(a);
|
||||||
a.click();
|
a.click();
|
||||||
document.body.removeChild(a);
|
document.removeChild(a);
|
||||||
}}
|
}}
|
||||||
key={i}
|
key={i}
|
||||||
onMouseEnter={() => setShowDownloadComponentOnLine(i)}
|
onMouseEnter={() => setShowDownloadComponentOnLine(i)}
|
||||||
|
|||||||
Reference in New Issue
Block a user