Replace service call icon (#13491)

This commit is contained in:
Franck Nijhof 2022-08-25 20:23:23 +02:00 committed by GitHub
parent b9fbad663d
commit 98352ae7b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,6 @@ import {
mdiCheckboxBlankOutline, mdiCheckboxBlankOutline,
mdiCheckboxMarkedOutline, mdiCheckboxMarkedOutline,
mdiChevronDown, mdiChevronDown,
mdiChevronRight,
mdiChevronUp, mdiChevronUp,
mdiClose, mdiClose,
mdiCloseOctagon, mdiCloseOctagon,
@ -18,6 +17,7 @@ import {
mdiDevices, mdiDevices,
mdiExclamation, mdiExclamation,
mdiRefresh, mdiRefresh,
mdiRoomService,
mdiShuffleDisabled, mdiShuffleDisabled,
mdiTimerOutline, mdiTimerOutline,
mdiTrafficLight, mdiTrafficLight,
@ -504,7 +504,7 @@ export class HatScriptGraph extends LitElement {
return html` return html`
<hat-graph-node <hat-graph-node
.graphStart=${graphStart} .graphStart=${graphStart}
.iconPath=${mdiChevronRight} .iconPath=${mdiRoomService}
@focus=${this.selectNode(node, path)} @focus=${this.selectNode(node, path)}
?track=${path in this.trace.trace} ?track=${path in this.trace.trace}
?active=${this.selected === path} ?active=${this.selected === path}

View File

@ -2,13 +2,13 @@ import {
mdiAbTesting, mdiAbTesting,
mdiArrowDecision, mdiArrowDecision,
mdiCallSplit, mdiCallSplit,
mdiChevronRight,
mdiCloseOctagon, mdiCloseOctagon,
mdiDevices, mdiDevices,
mdiExclamation, mdiExclamation,
mdiPalette, mdiPalette,
mdiPlay, mdiPlay,
mdiRefresh, mdiRefresh,
mdiRoomService,
mdiShuffleDisabled, mdiShuffleDisabled,
mdiTimerOutline, mdiTimerOutline,
mdiTrafficLight, mdiTrafficLight,
@ -20,7 +20,7 @@ export const ACTION_TYPES = {
event: mdiExclamation, event: mdiExclamation,
play_media: mdiPlay, play_media: mdiPlay,
activate_scene: mdiPalette, activate_scene: mdiPalette,
service: mdiChevronRight, service: mdiRoomService,
wait_template: mdiTrafficLight, wait_template: mdiTrafficLight,
wait_for_trigger: mdiTrafficLight, wait_for_trigger: mdiTrafficLight,
repeat: mdiRefresh, repeat: mdiRefresh,