tabexseriescomponents 0.0.306 → 0.0.307
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/index.cjs.js +1 -5
- package/dist/index.esm.js +1 -5
- package/dist/index.umd.js +1 -5
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -4843,11 +4843,7 @@ var Productinfo = function Productinfo(props) {
|
|
|
4843
4843
|
price = price * quantity;
|
|
4844
4844
|
}
|
|
4845
4845
|
if (price != undefined) {
|
|
4846
|
-
|
|
4847
|
-
return 0;
|
|
4848
|
-
} else {
|
|
4849
|
-
return price;
|
|
4850
|
-
}
|
|
4846
|
+
return price;
|
|
4851
4847
|
} else {
|
|
4852
4848
|
return 0;
|
|
4853
4849
|
}
|
package/dist/index.esm.js
CHANGED
|
@@ -4796,11 +4796,7 @@ var Productinfo = function Productinfo(props) {
|
|
|
4796
4796
|
price = price * quantity;
|
|
4797
4797
|
}
|
|
4798
4798
|
if (price != undefined) {
|
|
4799
|
-
|
|
4800
|
-
return 0;
|
|
4801
|
-
} else {
|
|
4802
|
-
return price;
|
|
4803
|
-
}
|
|
4799
|
+
return price;
|
|
4804
4800
|
} else {
|
|
4805
4801
|
return 0;
|
|
4806
4802
|
}
|
package/dist/index.umd.js
CHANGED