@salesforcedevs/dx-components 1.3.250 → 1.3.251

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": "@salesforcedevs/dx-components",
3
- "version": "1.3.250",
3
+ "version": "1.3.251",
4
4
  "description": "DX Lightning web components",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -45,5 +45,5 @@
45
45
  "volta": {
46
46
  "node": "16.19.1"
47
47
  },
48
- "gitHead": "7ed60c5a256160b6374cb53a3aebeabd2540a8fe"
48
+ "gitHead": "25314860cd3d24abee849fe5dff1336780904dc9"
49
49
  }
@@ -120,6 +120,9 @@ export default class Audio extends LightningElementWithTypedRefs<{
120
120
  return this._durationSeconds;
121
121
  }
122
122
  private set durationSeconds(value: number) {
123
+ if (!Number.isFinite(value)) {
124
+ return;
125
+ }
123
126
  this._durationSeconds = value;
124
127
  this.updateRangeInputStyles(
125
128
  this.typedRefs.playerSeekSlider,