@eeacms/volto-arcgis-block 0.1.43 → 0.1.44
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,8 +4,17 @@ 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
|
+
#### [0.1.44](https://github.com/eea/volto-arcgis-block/compare/0.1.43...0.1.44)
|
|
8
|
+
|
|
9
|
+
- Ux improvements [`#135`](https://github.com/eea/volto-arcgis-block/pull/135)
|
|
10
|
+
- ESLint fix [`22071a9`](https://github.com/eea/volto-arcgis-block/commit/22071a9740174bfcddd357d1fa994c7318982522)
|
|
11
|
+
- Change login link [`6a548a9`](https://github.com/eea/volto-arcgis-block/commit/6a548a9b8d154156c3c41c48cc6ace7709d6de0f)
|
|
12
|
+
|
|
7
13
|
#### [0.1.43](https://github.com/eea/volto-arcgis-block/compare/0.1.42...0.1.43)
|
|
8
14
|
|
|
15
|
+
> 24 May 2022
|
|
16
|
+
|
|
17
|
+
- Develop [`#134`](https://github.com/eea/volto-arcgis-block/pull/134)
|
|
9
18
|
- Remove title attribute [`#133`](https://github.com/eea/volto-arcgis-block/pull/133)
|
|
10
19
|
|
|
11
20
|
#### [0.1.42](https://github.com/eea/volto-arcgis-block/compare/0.1.41...0.1.42)
|
package/package.json
CHANGED
|
@@ -331,7 +331,6 @@ export const AddCartItem = ({
|
|
|
331
331
|
|
|
332
332
|
export const CheckLogin = () => {
|
|
333
333
|
const { isLoggedIn } = useCartState();
|
|
334
|
-
const { locale } = useIntl();
|
|
335
334
|
return (
|
|
336
335
|
<>
|
|
337
336
|
{!isLoggedIn && (
|
|
@@ -339,13 +338,17 @@ export const CheckLogin = () => {
|
|
|
339
338
|
<div className="login-content">
|
|
340
339
|
<a
|
|
341
340
|
className="ccl-button ccl-button--default"
|
|
342
|
-
href={'/
|
|
341
|
+
href={'https://ecas.acceptance.ec.europa.eu/cas/'}
|
|
343
342
|
>
|
|
344
343
|
Login to download the data
|
|
345
344
|
</a>
|
|
346
345
|
<p className="login-block-new">
|
|
347
346
|
New user?{' '}
|
|
348
|
-
<a
|
|
347
|
+
<a
|
|
348
|
+
href={
|
|
349
|
+
'https://ecas.acceptance.ec.europa.eu/cas/eim/external/register.cgi'
|
|
350
|
+
}
|
|
351
|
+
>
|
|
349
352
|
Follow this link to register
|
|
350
353
|
</a>
|
|
351
354
|
</p>
|