rerobe-js-orm 4.2.8 → 4.2.9
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 +2 -2
- package/package.json +1 -1
package/lib/models/Product.js
CHANGED
|
@@ -553,7 +553,7 @@ class Product extends Base_1.default {
|
|
|
553
553
|
{
|
|
554
554
|
title: 'Product Details',
|
|
555
555
|
attributes: [
|
|
556
|
-
size && `${t('
|
|
556
|
+
size && `${t('Label size')}: ${t(size)}`,
|
|
557
557
|
gender && `${t('Primary segment')}: ${t(gender)}`,
|
|
558
558
|
productCategory && `${t('Category')}: ${t(productCategory)}`,
|
|
559
559
|
productType && `${t('Type')}: ${t(productType)}`,
|
|
@@ -588,7 +588,7 @@ class Product extends Base_1.default {
|
|
|
588
588
|
title: 'Additional Remarks',
|
|
589
589
|
attributes: [
|
|
590
590
|
productRemarks && `${t('Remarks')}: ${t(productRemarks)}`,
|
|
591
|
-
careInstructions && `${t('Care
|
|
591
|
+
careInstructions && `${t('Care instructions')}: ${t(careInstructions)}`,
|
|
592
592
|
].filter(Boolean),
|
|
593
593
|
},
|
|
594
594
|
];
|