Skip to content

Commit

Permalink
Merge pull request #25 from eea/develop
Browse files Browse the repository at this point in the history
Fix Icon name warning:
  • Loading branch information
avoinea authored Jun 15, 2022
2 parents 17713b7 + 9a5c2ba commit 3a5b643
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,17 @@ 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).

#### [2.0.2](https://github.com/eea/volto-tabs-block/compare/2.0.1...2.0.2)

- Fix Icon name warning: [`0c72628`](https://github.com/eea/volto-tabs-block/commit/0c726288cd851f676c5942702118215bd4bae4ab)

#### [2.0.1](https://github.com/eea/volto-tabs-block/compare/2.0.0...2.0.1)

> 10 June 2022
- Apply menu item style on tabs-block only [`#24`](https://github.com/eea/volto-tabs-block/pull/24)
- stylelint [`267fbdb`](https://github.com/eea/volto-tabs-block/commit/267fbdb72f69715690d281498d1fd0837c18fc0d)
- Prettier fix [`5ac20a8`](https://github.com/eea/volto-tabs-block/commit/5ac20a8352f00618dae1623ac200ea1779342e8d)
- Apply menu item style on tabs-block only [`fec62b2`](https://github.com/eea/volto-tabs-block/commit/fec62b222bcc07bc102f6d73b89369f57f49512d)

### [2.0.0](https://github.com/eea/volto-tabs-block/compare/1.3.2...2.0.0)

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-tabs-block",
"version": "2.0.1",
"version": "2.0.2",
"description": "volto-tabs-block: Volto add-on",
"main": "src/index.js",
"author": "European Environment Agency: IDM2 A-Team",
Expand Down
4 changes: 3 additions & 1 deletion src/components/templates/accordion/View.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ const View = (props) => {
title: (
<>
{semanticIcon ? (
<Icon name={active ? semanticIcon.opened : semanticIcon.closed} />
<Icon
className={active ? semanticIcon.opened : semanticIcon.closed}
/>
) : (
<VoltoIcon
name={active ? icons.opened : icons.closed}
Expand Down

0 comments on commit 3a5b643

Please sign in to comment.