-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed
Description
It should be relatively simple to add a fix for wc/guard-super-call
Take a simple error state such as:
connectedCallback() {
super.connectedCallback();
this.setAttribute('bar', 'baz');
}and change it to this:
connectedCallback() {
if (super.connectedCallback) {
super.connectedCallback();
}
this.setAttribute('bar', 'baz');
}Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed