File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -161,7 +161,6 @@ export class UUIRadioElement extends LitElement {
161
161
public label = '' ;
162
162
163
163
@property ( { type : Boolean , reflect : true } )
164
- private _checked = false ;
165
164
public get checked ( ) {
166
165
return this . _checked ;
167
166
}
@@ -177,8 +176,7 @@ export class UUIRadioElement extends LitElement {
177
176
this . removeAttribute ( 'aria-checked' ) ;
178
177
}
179
178
}
180
-
181
- private _disabled = false ;
179
+ private _checked = false ;
182
180
183
181
/**
184
182
* Disables the input.
@@ -190,7 +188,6 @@ export class UUIRadioElement extends LitElement {
190
188
get disabled ( ) {
191
189
return this . _disabled ;
192
190
}
193
-
194
191
set disabled ( newVal ) {
195
192
const oldVal = this . _disabled ;
196
193
this . _disabled = newVal ;
@@ -200,6 +197,7 @@ export class UUIRadioElement extends LitElement {
200
197
}
201
198
this . requestUpdate ( 'disabled' , oldVal ) ;
202
199
}
200
+ private _disabled = false ;
203
201
204
202
constructor ( ) {
205
203
super ( ) ;
You can’t perform that action at this time.
0 commit comments