We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 972509c commit 416ba4dCopy full SHA for 416ba4d
ui/components/progress-ring/RELEASENOTES.md
@@ -8,6 +8,12 @@
8
9
- Added aria-label attribute to the progress ring to meet accessibility requirements.
10
11
+## 2.22.0
12
+
13
+### Fixed
14
15
+- Fixed duplicate IDs by adding helper method
16
17
## 2.17.0
18
19
### Added
ui/components/progress-ring/index.jsx
@@ -86,7 +86,7 @@ class ProgressRing extends Component {
86
<svg viewBox={viewBoxParams}>
87
<circle
88
className="slds-progress-ring__path"
89
- id={uniqueId}
+ id={_.uniqueId('slds-progress-ring-path-')}
90
cx={Number(progressHeadPlotRadius * x)}
91
cy={Number(progressHeadPlotRadius * y)}
92
r={progressHeadRadius}
0 commit comments