@woosmap/ui 4.162.11 → 4.162.12

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@woosmap/ui",
3
- "version": "4.162.11",
3
+ "version": "4.162.12",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/WebGeoServices/ui.git"
@@ -15,6 +15,7 @@ class PricingSimulator extends Component {
15
15
  sliders[category][pricingKey] = {
16
16
  queries: PricingData[category].pricings[pricingKey].defaultQueries || 0,
17
17
  amount: 0,
18
+ computedQueries: PricingData[category].pricings[pricingKey].defaultQueries || 0,
18
19
  };
19
20
  });
20
21
  });
@@ -28,6 +29,7 @@ class PricingSimulator extends Component {
28
29
  this.setState({ sliders: newSliders });
29
30
  };
30
31
 
32
+ // eslint-disable-next-line sonarjs/cognitive-complexity
31
33
  computeTotal = () => {
32
34
  let freeQueriesTotal = 0;
33
35
  let eligibleTotal = 0;