Skip to content

Commit

Permalink
fix(iconbutton)!: change visibility of willUpdate to protected
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 559456407
  • Loading branch information
AndrewJakubowicz authored and copybara-github committed Aug 23, 2023
1 parent cdd9b26 commit dffff2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iconbutton/internal/icon-button.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export class IconButton extends LitElement implements FormSubmitter {
/**
* Link buttons cannot be disabled.
*/
override willUpdate() {
protected override willUpdate() {
if (this.href) {
this.disabled = false;
}
Expand Down

0 comments on commit dffff2d

Please sign in to comment.