cec-nuxt-lib 0.8.8 → 0.9.0
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/dist/module.json
CHANGED
|
@@ -648,7 +648,7 @@ const promotionalFullWidthImageWithSideOverlay = (props: any) => {
|
|
|
648
648
|
};
|
|
649
649
|
|
|
650
650
|
const processUri = (uri) => {
|
|
651
|
-
return uri.toLowerCase()
|
|
651
|
+
return encodeURI(decodeURI(uri).toLowerCase());
|
|
652
652
|
};
|
|
653
653
|
|
|
654
654
|
const genericList = (props: any) => {
|
|
@@ -8,9 +8,7 @@
|
|
|
8
8
|
<h2 class="fs-4 mb-3 pb-2">Using this site</h2>
|
|
9
9
|
<ul class="list-unstyled cec-sub-nav">
|
|
10
10
|
<li>
|
|
11
|
-
<a href="/
|
|
12
|
-
>A to Z site index</a
|
|
13
|
-
>
|
|
11
|
+
<a href="/a-to-z-site-index">A to Z site index</a>
|
|
14
12
|
</li>
|
|
15
13
|
<li>
|
|
16
14
|
<a
|
package/package.json
CHANGED