Skip to content

Commit

Permalink
Merge pull request #19 from eea/develop
Browse files Browse the repository at this point in the history
Release
  • Loading branch information
laszlocseh authored Jul 10, 2024
2 parents 37ddbe0 + 79704e3 commit e1fabaa
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ 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).

### [1.1.16](https://github.com/eea/volto-marine-policy/compare/1.1.15...1.1.16) - 11 June 2024
### [1.1.17](https://github.com/eea/volto-marine-policy/compare/1.1.16...1.1.17) - 10 July 2024

#### :bug: Bug Fixes

- fix: update env vars for elastic_index [nileshgulia1 - [`acd745c`](https://github.com/eea/volto-marine-policy/commit/acd745c5e82c2e8ed27e09ab7e4f1b7151136654)]
- fix: in MSFDDataExplorerBlock added bootstrap.js to scripts [laszlocseh - [`8bf4882`](https://github.com/eea/volto-marine-policy/commit/8bf4882612c896a9e050afdbf2ee8f6e6e970280)]

### [1.1.16](https://github.com/eea/volto-marine-policy/compare/1.1.15...1.1.16) - 11 June 2024

### [1.1.15](https://github.com/eea/volto-marine-policy/compare/1.1.14...1.1.15) - 10 June 2024

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-marine-policy",
"version": "1.1.16",
"version": "1.1.17",
"description": "@eeacms/volto-marine-policy: Volto add-on",
"main": "src/index.js",
"author": "European Environment Agency: IDM2 A-Team",
Expand Down
5 changes: 4 additions & 1 deletion src/components/Blocks/MsfdDataExplorerBlock/View.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,16 @@ const MsfdDataExplorerBlockView = (props) => {
'/marine/++api++/++resource++msfd/js/jquery-ui.js',
'/marine/++api++/++resource++msfd/js/tabs.js',
'/marine/++api++/++resource++msfd/js/msfd_search.js',
'/marine/++api++/++resource++msfd/bs3/js/bootstrap.min.js',
];

if (!loading) {
$.getScript(scripts[0], () => {
$.getScript(scripts[1], () => {
$.getScript(scripts[2], () => {
$.getScript(scripts[3]);
$.getScript(scripts[3], () => {
$.getScript(scripts[4]);
});
});
});
});
Expand Down

0 comments on commit e1fabaa

Please sign in to comment.