Skip to content

Commit

Permalink
Merge pull request #16 from eea/develop
Browse files Browse the repository at this point in the history
Release
  • Loading branch information
laszlocseh authored Jun 10, 2024
2 parents 8a5ea7b + a61d378 commit db89c08
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ 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.15](https://github.com/eea/volto-marine-policy/compare/1.1.14...1.1.15) - 10 June 2024

#### :bug: Bug Fixes

- fix: add a custom theme widget for sub-theme refs#270459 [nileshgulia1 - [`c0e310a`](https://github.com/eea/volto-marine-policy/commit/c0e310a3c28a9d4d0f1e9deabc41b0bb54bd5b8f)]
- fix(contextNav): do not show down arrow on empty items [nileshgulia1 - [`11b70da`](https://github.com/eea/volto-marine-policy/commit/11b70da2453da8a09585a141ecc0891fbb17590d)]
- fix: SP Measures view css [nileshgulia1 - [`3cdc62d`](https://github.com/eea/volto-marine-policy/commit/3cdc62dfc7ce07ae6cec7982a30ccf8139e9dc1f)]

### [1.1.14](https://github.com/eea/volto-marine-policy/compare/1.1.13...1.1.14) - 5 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-marine-policy",
"version": "1.1.14",
"version": "1.1.15",
"description": "@eeacms/volto-marine-policy: Volto add-on",
"main": "src/index.js",
"author": "European Environment Agency: IDM2 A-Team",
Expand Down
4 changes: 2 additions & 2 deletions src/components/Blocks/ContextNavigation/Accordion.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ const Accordion = (props) => {
handleIconClick(e, index);
}}
/>
) : (
) : showChildren ? (
<Icon
className="ri-arrow-down-s-line"
onClick={(e) => {
handleIconClick(e, index);
}}
/>
)}
) : null}
</SemanticAccordion.Title>
<SemanticAccordion.Content active={active && showChildren}>
<AccordionContent
Expand Down
2 changes: 1 addition & 1 deletion src/components/Widgets/MeasureViewWidget.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ const MeasureView = (props) => {
<React.Fragment>
<BodyClass className="custom-page-header" />
<IsomorphicPortal>
<div className="measure-header content-box">
<div className="measure-header content-box ui container">
<div className="measure-header-content">
<h1 className="measure-title">
<String val={truncateTitle()} />
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ const applyConfig = (config) => {
// check if it breaks the 'theme' field in volto-tabs-block in the 'horizontal carousel' layout
// We have a 'theme' field in the wise catalogue metadata (CatalogueMetadata)
config.widgets.id.indicator_theme = TokenWidget;
// config.widgets.id.theme = TokenWidget;
config.widgets.widget.wise_theme = TokenWidget;

config.blocks.groupBlocksOrder = [
...config.blocks.groupBlocksOrder,
Expand Down

0 comments on commit db89c08

Please sign in to comment.