Skip to content

Commit 9d2dd29

Browse files
thetaPCShaneK
andauthored
Update core/src/components/checkbox/checkbox.tsx
Co-authored-by: Shane <[email protected]>
1 parent a7a218e commit 9d2dd29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/components/checkbox/checkbox.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,8 +281,8 @@ export class Checkbox implements ComponentInterface {
281281
aria-disabled={disabled ? 'true' : null}
282282
tabindex={disabled ? undefined : 0}
283283
onKeyDown={this.onKeyDown}
284-
onFocus={() => this.onFocus()}
285-
onBlur={() => this.onBlur()}
284+
onFocus={this.onFocus}
285+
onBlur={this.onBlur}
286286
onClick={this.onClick}
287287
class={createColorClasses(color, {
288288
[mode]: true,

0 commit comments

Comments
 (0)