Skip to content

Commit

Permalink
just ignore the rules for now
Browse files Browse the repository at this point in the history
  • Loading branch information
koddsson committed Apr 22, 2024
1 parent 4ea7419 commit a84658a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 3 additions & 1 deletion docs/fundamentals/systems/form/assets/h-output.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,9 @@ export class HelperOutput extends LitElement {
return html`<span title="${resultText}">${resultText}</span>`;
}

connectedCallback() {
constructor() {
super();
// eslint-disable-next-line wc/no-constructor-attributes
this.title = 'States';
}

Expand Down
6 changes: 2 additions & 4 deletions packages/ui/components/helpers/src/SbActionLogger.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,12 +126,10 @@ export class SbActionLogger extends LitElement {

constructor() {
super();
this.__logCounter = 0;
}

connectedCallback() {
// eslint-disable-next-line wc/no-constructor-attributes
this.title = 'Action Logger';
this.simple = false;
this.__logCounter = 0;
}

get loggerEl() {
Expand Down

0 comments on commit a84658a

Please sign in to comment.