@salesforcedevs/dx-components 1.3.206-alpha.14 → 1.3.206-alpha.16
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/package.json
CHANGED
|
@@ -53,7 +53,7 @@ const resultsTemplatesInnerHtml = `
|
|
|
53
53
|
<p class="dx-result-title">
|
|
54
54
|
<a
|
|
55
55
|
class="CoveoResultLink"
|
|
56
|
-
data-field="@
|
|
56
|
+
data-field="@clickableuri"
|
|
57
57
|
></a>
|
|
58
58
|
</p>
|
|
59
59
|
<p class="dx-result-excerpt CoveoExcerpt"></p>
|
|
@@ -91,7 +91,7 @@ const resultsTemplatesInnerHtml = `
|
|
|
91
91
|
<p class="dx-result-title">
|
|
92
92
|
<a
|
|
93
93
|
class="CoveoResultLink"
|
|
94
|
-
data-field="@
|
|
94
|
+
data-field="@clickableuri"
|
|
95
95
|
></a>
|
|
96
96
|
</p>
|
|
97
97
|
<p class="dx-result-excerpt CoveoExcerpt"></p>
|
|
@@ -159,7 +159,7 @@ const buildTemplateHelperUriBreadcrumbs = (value: string) => {
|
|
|
159
159
|
// exclude youtube links from breadcrumbs
|
|
160
160
|
const hostnamePattern = /^((www\.)?(youtube\.com|youtu\.be))$/;
|
|
161
161
|
|
|
162
|
-
if (hostnamePattern.test(url.hostname)) {
|
|
162
|
+
if (hostnamePattern.test(url.hostname) || url.pathname.includes("atlas.")) {
|
|
163
163
|
return "";
|
|
164
164
|
}
|
|
165
165
|
|