diff --git a/src/components/hacs-repository-card.ts b/src/components/hacs-repository-card.ts index 047fc526..00e6ec40 100644 --- a/src/components/hacs-repository-card.ts +++ b/src/components/hacs-repository-card.ts @@ -4,7 +4,7 @@ import { mdiAlertCircleOutline, mdiArrowDownCircle, mdiClose, - mdiHelpCircleOutline, + mdiInformation, mdiLanguageJavascript, mdiReload, } from "@mdi/js"; @@ -161,7 +161,7 @@ export class HacsRepositoryCard extends LitElement { .hass=${this.hass} .items=${[ { - path: mdiAlertCircleOutline, + path: mdiInformation, label: this.hacs.localize("repository_card.information"), action: () => this._showReopsitoryInfo(), }, @@ -187,7 +187,7 @@ export class HacsRepositoryCard extends LitElement { ), }, { - path: mdiHelpCircleOutline, + path: mdiAlertCircleOutline, label: this.hacs.localize("repository_card.open_issue"), action: () => top?.open( diff --git a/src/panels/hacs-entry-panel.ts b/src/panels/hacs-entry-panel.ts index c18e2f14..dd1b6144 100644 --- a/src/panels/hacs-entry-panel.ts +++ b/src/panels/hacs-entry-panel.ts @@ -1,4 +1,4 @@ -import { mdiAlertCircle, mdiHomeAssistant, mdiOpenInNew } from "@mdi/js"; +import { mdiAlertCircle, mdiHomeAssistant, mdiInformation, mdiOpenInNew } from "@mdi/js"; import "@polymer/app-layout/app-header-layout/app-header-layout"; import "@polymer/app-layout/app-header/app-header"; import "@polymer/app-layout/app-toolbar/app-toolbar"; @@ -158,7 +158,7 @@ export class HacsEntryPanel extends LitElement { - + ${this.hacs.localize(`sections.about.title`)}
${this.hacs.localize(`sections.about.description`)}
diff --git a/src/panels/hacs-store-panel.ts b/src/panels/hacs-store-panel.ts index 89d2a5b0..ffb68766 100644 --- a/src/panels/hacs-store-panel.ts +++ b/src/panels/hacs-store-panel.ts @@ -4,7 +4,7 @@ import { mdiFileDocument, mdiGit, mdiGithub, - mdiHelpCircleOutline, + mdiInformation, mdiPlus, } from "@mdi/js"; import { css, html, LitElement, TemplateResult } from "lit"; @@ -143,7 +143,7 @@ export class HacsStorePanel extends LitElement { action: () => top?.open("https://github.com/hacs", "_blank", "noreferrer=true"), }, { - path: mdiHelpCircleOutline, + path: mdiAlertCircleOutline, label: this.hacs.localize("menu.open_issue"), action: () => top?.open("https://hacs.xyz/docs/issues", "_blank", "noreferrer=true"), }, @@ -178,7 +178,7 @@ export class HacsStorePanel extends LitElement { }, { - path: mdiAlertCircleOutline, + path: mdiInformation, label: this.hacs.localize("menu.about"), action: () => showDialogAbout(this, this.hacs), },