Skip to content

Commit

Permalink
Merge pull request #779 from eea/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
ujbolivar committed Jun 11, 2024
2 parents ddd5d4f + 7e3d10f commit 9723fcf
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).

### [0.1.286](https://github.com/eea/volto-arcgis-block/compare/0.1.285...0.1.286) - 11 June 2024

#### :hammer_and_wrench: Others

- CLMS-DEMO (bug): demo crashes with dynamic land cover datasets because of attempting to pin legend transparency when no layer exists fixed. [Unai Bolivar - [`a4e1bc4`](https://github.com/eea/volto-arcgis-block/commit/a4e1bc43e6a34c74bd310a7a2dd956f61fc6d559)]
### [0.1.285](https://github.com/eea/volto-arcgis-block/compare/0.1.284...0.1.285) - 11 June 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-arcgis-block",
"version": "0.1.285",
"version": "0.1.286",
"description": "volto-arcgis-block: Volto add-on",
"main": "src/index.js",
"author": "European Environment Agency: CodeSyntax",
Expand Down
2 changes: 1 addition & 1 deletion src/components/MapViewer/MenuWidget.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3275,7 +3275,7 @@ class MenuWidget extends React.Component {
img = element;
}
// Set Legend opacity back to 1;
if (img) {
if (img && Object.keys(img).length !== 0) {
img.setAttribute(
'style',
'opacity:1; -moz-opacity:1; filter:alpha(opacity=100)',
Expand Down

0 comments on commit 9723fcf

Please sign in to comment.