Skip to content

Commit

Permalink
Allways show new repository filter (#644)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus authored Apr 1, 2023
1 parent 3e7ac21 commit 2413a42
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions src/panels/hacs-experimental-panel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,18 +220,14 @@ export class HacsExperimentalPanel extends LitElement {
>
${this.hacs.localize("common.downloaded")}
</ha-check-list-item>
${repositoriesContainsNew
? html`
<ha-check-list-item
@request-selected=${this._handleNewFilterChange}
graphic="control"
.selected=${this.activeFilters?.includes(this.hacs.localize("common.new")) ?? false}
left
>
${this.hacs.localize("common.new")}
</ha-check-list-item>
`
: ""}
<ha-check-list-item
@request-selected=${this._handleNewFilterChange}
graphic="control"
.selected=${this.activeFilters?.includes(this.hacs.localize("common.new")) ?? false}
left
>
${this.hacs.localize("common.new")}
</ha-check-list-item>
${!this.narrow
? html`
<ha-select
Expand Down

0 comments on commit 2413a42

Please sign in to comment.