@rfkit/charts 1.3.9 → 1.3.10

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.
Files changed (2) hide show
  1. package/index.js +2 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -9446,8 +9446,8 @@ const Slider = ({ id })=>{
9446
9446
  zIndex: 6,
9447
9447
  showBoundaryLines: true,
9448
9448
  labels: {
9449
- left: `${info?.startFrequencyFormat}${unit}`,
9450
- right: `${info?.endFrequencyFormat}${unit}`,
9449
+ left: info?.startFrequencyFormat ? `${info.startFrequencyFormat}${unit}` : '',
9450
+ right: info?.endFrequencyFormat ? `${info.endFrequencyFormat}${unit}` : '',
9451
9451
  top: info?.endTimestamp,
9452
9452
  bottom: info?.startTimestamp
9453
9453
  },
package/package.json CHANGED
@@ -5,6 +5,6 @@
5
5
  "types": "index.d.ts",
6
6
  "author": "Hxgh",
7
7
  "license": "MIT",
8
- "version": "1.3.9",
8
+ "version": "1.3.10",
9
9
  "private": false
10
10
  }