Skip to content

Commit

Permalink
Merge pull request #72 from eea/develop
Browse files Browse the repository at this point in the history
remove default height value on tableau, ref #272831
  • Loading branch information
alecghica authored Jul 23, 2024
2 parents eaabc4e + 2a44a51 commit 0a7141b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

### [8.0.5](https://github.com/eea/volto-tableau/compare/8.0.4...8.0.5) - 23 July 2024

#### :hammer_and_wrench: Others

- remove default height value on tableau, ref #272831 [Miu Razvan - [`e3fbe96`](https://github.com/eea/volto-tableau/commit/e3fbe9665bec14204694db1968746fb565a2cdc8)]
### [8.0.4](https://github.com/eea/volto-tableau/compare/8.0.3...8.0.4) - 22 July 2024

#### :hammer_and_wrench: Others
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eeacms/volto-tableau",
"version": "8.0.4",
"version": "8.0.5",
"description": "@eeacms/volto-tableau: Volto add-on",
"main": "src/index.js",
"author": "European Environment Agency: IDM2 A-Team",
Expand Down
2 changes: 1 addition & 1 deletion src/Tableau/Tableau.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function getHeight(height) {
if (asNumber) {
return `${height}px`;
}
return height || '700px';
return height;
}

const TableauDebug = ({ mode, data, vizState, url, version, clearData }) => {
Expand Down

0 comments on commit 0a7141b

Please sign in to comment.