@eeacms/volto-eea-website-theme 1.4.1 → 1.4.2
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,6 +4,12 @@ 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.4.2](https://github.com/eea/volto-eea-website-theme/compare/1.4.1...1.4.2) - 29 December 2022
|
8
|
+
|
9
|
+
#### :bug: Bug Fixes
|
10
|
+
|
11
|
+
- fix(Sidebar): Remove faulty imageicons.less import [Alin Voinea - [`49ed0cc`](https://github.com/eea/volto-eea-website-theme/commit/49ed0cc7e3f030f6e70c01d0fd4dba2318ab00bb)]
|
12
|
+
|
7
13
|
### [1.4.1](https://github.com/eea/volto-eea-website-theme/compare/1.4.0...1.4.1) - 29 December 2022
|
8
14
|
|
9
15
|
#### :bug: Bug Fixes
|
package/package.json
CHANGED
@@ -6,7 +6,6 @@ import Icon from '@plone/volto/components/theme/Icon/Icon';
|
|
6
6
|
import { flattenToAppURL, getContentIcon } from '@plone/volto/helpers';
|
7
7
|
import { Image } from 'semantic-ui-react';
|
8
8
|
import config from '@plone/volto/registry';
|
9
|
-
import '@eeacms/volto-eea-website-theme/../theme/site/imageicons/imageicons.less';
|
10
9
|
|
11
10
|
import rightArrowSVG from '@plone/volto/icons/right-key.svg';
|
12
11
|
import homeSVG from '@plone/volto/icons/home.svg';
|
@@ -84,7 +83,11 @@ const ObjectBrowserNav = ({
|
|
84
83
|
{item['@type'] === 'Image' ? (
|
85
84
|
<Image
|
86
85
|
src={`${item?.getURL}/@@images/image`}
|
87
|
-
|
86
|
+
style={{
|
87
|
+
marginRight: '10px',
|
88
|
+
maxHeight: '24px',
|
89
|
+
maxWidth: '24px',
|
90
|
+
}}
|
88
91
|
/>
|
89
92
|
) : (
|
90
93
|
<Icon
|