Skip to content

Commit 9d68753

Browse files
committed
Change icon for resume group monitor
1 parent f676d31 commit 9d68753

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/views/group_monitor.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { html, CSSResultGroup, LitElement, TemplateResult, nothing } from "lit";
22
import { customElement, property, state } from "lit/decorators";
33

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

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

0 commit comments

Comments
 (0)