@gem-sdk/core 1.63.2 → 1.63.3
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.
|
@@ -116,6 +116,13 @@ const overrideSettings = (tag, currentSetting, appSetting)=>{
|
|
|
116
116
|
shortcode: appSetting?.shortcode
|
|
117
117
|
};
|
|
118
118
|
}
|
|
119
|
+
case 'YotpoReviews':
|
|
120
|
+
{
|
|
121
|
+
return {
|
|
122
|
+
...currentSetting,
|
|
123
|
+
product: appSetting?.['productHandle'] || '{{ product }}'
|
|
124
|
+
};
|
|
125
|
+
}
|
|
119
126
|
default:
|
|
120
127
|
return currentSetting;
|
|
121
128
|
}
|
|
@@ -114,6 +114,13 @@ const overrideSettings = (tag, currentSetting, appSetting)=>{
|
|
|
114
114
|
shortcode: appSetting?.shortcode
|
|
115
115
|
};
|
|
116
116
|
}
|
|
117
|
+
case 'YotpoReviews':
|
|
118
|
+
{
|
|
119
|
+
return {
|
|
120
|
+
...currentSetting,
|
|
121
|
+
product: appSetting?.['productHandle'] || '{{ product }}'
|
|
122
|
+
};
|
|
123
|
+
}
|
|
117
124
|
default:
|
|
118
125
|
return currentSetting;
|
|
119
126
|
}
|