Skip to content

Commit

Permalink
Change icon for resume group monitor
Browse files Browse the repository at this point in the history
  • Loading branch information
farmio committed Aug 9, 2024
1 parent f676d31 commit 9d68753
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/group_monitor.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { html, CSSResultGroup, LitElement, TemplateResult, nothing } from "lit";
import { customElement, property, state } from "lit/decorators";

import { mdiPause, mdiAutorenew } from "@mdi/js";
import { mdiPause, mdiFastForward } from "@mdi/js";
import memoize from "memoize-one";

import "@ha/layouts/hass-loading-screen";
Expand Down Expand Up @@ -220,7 +220,7 @@ export class KNXGroupMonitor extends LitElement {
<ha-icon-button
slot="toolbar-icon"
.label=${this._pause ? "Resume" : "Pause"}
.path=${this._pause ? mdiAutorenew : mdiPause}
.path=${this._pause ? mdiFastForward : mdiPause}
@click=${this._togglePause}
></ha-icon-button>
</hass-tabs-subpage-data-table>
Expand Down

0 comments on commit 9d68753

Please sign in to comment.