@eeacms/volto-marine-policy 1.1.16 → 1.1.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -4,11 +4,13 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
- ### [1.1.16](https://github.com/eea/volto-marine-policy/compare/1.1.15...1.1.16) - 11 June 2024
7
+ ### [1.1.17](https://github.com/eea/volto-marine-policy/compare/1.1.16...1.1.17) - 10 July 2024
8
8
 
9
9
  #### :bug: Bug Fixes
10
10
 
11
- - fix: update env vars for elastic_index [nileshgulia1 - [`acd745c`](https://github.com/eea/volto-marine-policy/commit/acd745c5e82c2e8ed27e09ab7e4f1b7151136654)]
11
+ - fix: in MSFDDataExplorerBlock added bootstrap.js to scripts [laszlocseh - [`8bf4882`](https://github.com/eea/volto-marine-policy/commit/8bf4882612c896a9e050afdbf2ee8f6e6e970280)]
12
+
13
+ ### [1.1.16](https://github.com/eea/volto-marine-policy/compare/1.1.15...1.1.16) - 11 June 2024
12
14
 
13
15
  ### [1.1.15](https://github.com/eea/volto-marine-policy/compare/1.1.14...1.1.15) - 10 June 2024
14
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-marine-policy",
3
- "version": "1.1.16",
3
+ "version": "1.1.17",
4
4
  "description": "@eeacms/volto-marine-policy: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: IDM2 A-Team",
@@ -44,13 +44,16 @@ const MsfdDataExplorerBlockView = (props) => {
44
44
  '/marine/++api++/++resource++msfd/js/jquery-ui.js',
45
45
  '/marine/++api++/++resource++msfd/js/tabs.js',
46
46
  '/marine/++api++/++resource++msfd/js/msfd_search.js',
47
+ '/marine/++api++/++resource++msfd/bs3/js/bootstrap.min.js',
47
48
  ];
48
49
 
49
50
  if (!loading) {
50
51
  $.getScript(scripts[0], () => {
51
52
  $.getScript(scripts[1], () => {
52
53
  $.getScript(scripts[2], () => {
53
- $.getScript(scripts[3]);
54
+ $.getScript(scripts[3], () => {
55
+ $.getScript(scripts[4]);
56
+ });
54
57
  });
55
58
  });
56
59
  });