rerobe-js-orm 3.3.5 → 3.3.6
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/lib/models/Product.js +1 -1
- package/package.json +1 -1
package/lib/models/Product.js
CHANGED
|
@@ -496,7 +496,7 @@ class Product extends Base_1.default {
|
|
|
496
496
|
{
|
|
497
497
|
title: 'Purchase Details',
|
|
498
498
|
attributes: [
|
|
499
|
-
compareAtPrice && `${t('Original price')}: ${t(
|
|
499
|
+
compareAtPrice && `${t('Original price')}: ${t(compareAtPrice)}`,
|
|
500
500
|
purchasePrice && `${t('Purchase price')}: ${t(purchasePrice)}`,
|
|
501
501
|
yearPurchased && `${t('Year purchased')}: ${t(yearPurchased)}`,
|
|
502
502
|
].filter(Boolean),
|