1
0
mirror of https://github.com/home-assistant/frontend.git synced 2025-12-24 12:49:19 +00:00

Change integration enable/disable icons to match automations (#13472)

This commit is contained in:
Franck Nijhof
2022-08-24 15:00:33 +02:00
committed by GitHub
parent 89c6fa7383
commit 6b7c00edbc

View File

@@ -11,10 +11,10 @@ import {
mdiDotsVertical,
mdiDownload,
mdiOpenInNew,
mdiPlayCircleOutline,
mdiReload,
mdiRenameBox,
mdiToggleSwitch,
mdiToggleSwitchOff,
mdiStopCircleOutline,
} from "@mdi/js";
import "@polymer/paper-item/paper-item";
import "@polymer/paper-listbox";
@@ -432,7 +432,7 @@ export class HaIntegrationCard extends LitElement {
${this.hass.localize("ui.common.enable")}
<ha-svg-icon
slot="graphic"
.path=${mdiToggleSwitch}
.path=${mdiPlayCircleOutline}
></ha-svg-icon>
</mwc-list-item>`
: item.source !== "system"
@@ -445,7 +445,7 @@ export class HaIntegrationCard extends LitElement {
<ha-svg-icon
slot="graphic"
class="warning"
.path=${mdiToggleSwitchOff}
.path=${mdiStopCircleOutline}
></ha-svg-icon>
</mwc-list-item>`
: ""}