Skip to content

Commit

Permalink
Fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dombesz committed Sep 6, 2024
1 parent e650997 commit 2d151fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/components/primer/open_project/sub_header_element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class SubHeaderElement extends HTMLElement {
clearButtonWrapper: HTMLElement | null

connectedCallback() {
this.#setupFilterInputClearButton();
this.#setupFilterInputClearButton()
}

toggleFilterInputClearButton() {
Expand Down Expand Up @@ -54,7 +54,7 @@ class SubHeaderElement extends HTMLElement {
this.classList.remove('SubHeader--expandedSearch')
}

#setupFilterInputClearButton(){
#setupFilterInputClearButton() {
this.#waitForCondition(
() => Boolean(this.filterInput),
() => {
Expand All @@ -64,7 +64,7 @@ class SubHeaderElement extends HTMLElement {
if (this.clearFilterButton) {
this.toggleFilterInputClearButton()
}
}
},
)
}

Expand Down

0 comments on commit 2d151fe

Please sign in to comment.