@woosmap/ui 4.220.7 → 4.220.8
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
|
@@ -162,15 +162,15 @@ export default class PricingSlider extends Component {
|
|
|
162
162
|
<td>{tr('Cost per 1000')}</td>
|
|
163
163
|
</tr>
|
|
164
164
|
{displayedPricing.map((tier, index) => {
|
|
165
|
+
const lower = index > 0 ? displayedPricing[index - 1][0] : 0;
|
|
165
166
|
if (index === displayedPricing.length - 1) {
|
|
166
167
|
return (
|
|
167
168
|
<tr>
|
|
168
|
-
<td>{`${numeral(
|
|
169
|
+
<td>{`${numeral(lower).format('0.[0]a')}+`}</td>
|
|
169
170
|
<td>Contact us for discount</td>
|
|
170
171
|
</tr>
|
|
171
172
|
);
|
|
172
173
|
}
|
|
173
|
-
const lower = index > 0 ? displayedPricing[index - 1][0] : 0;
|
|
174
174
|
if (index === displayedPricing.length - 2) {
|
|
175
175
|
return (
|
|
176
176
|
<tr>
|