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 561fefb commit 3ed8f18Copy full SHA for 3ed8f18
elements/pf-radio/pf-radio.ts
@@ -144,7 +144,7 @@ export class PfRadio extends LitElement {
144
if (parentNode === this.parentNode) {
145
radioGroup.forEach((radioSet, groupName) => {
146
if (this.parentNode && groupName === this.name) {
147
- [...radioSet].forEach(radio => {
+ [...radioSet].forEach((radio: PfRadio) => {
148
radio.checked = false;
149
});
150
this.checked = true;
0 commit comments