Hi,
i’m using state-card-tiles.html for a particular view of my HA front-end to display tile to control my multimedia device.
My problem is after one of the last release of HA, I then now have a special behavior.
When I click a tile, the action is executed but after that I have a “group popup” that show up.
This is my config :
script.yaml
remote_control_kodi: sequence:
customize.yaml
script.remote_control_kodi: custom_ui_state_card: state-card-tiles config: columns: 3 row_height: 45px column_width: 62px gap: 15px color: '#555B65' color_on: '#D5D619' color_off: '#BBBEC2' entities: - entity: script.kodi_home icon: mdi:home column: 1 row: 1 - entity: script.kodi_up icon: mdi:arrow-up-bold column: 2 row: 1 - entity: script.kodi_left icon: mdi:arrow-left-bold column: 1 row: 2 - entity: script.kodi_select icon: mdi:checkbox-marked column: 2 row: 2 - entity: script.kodi_right icon: mdi:arrow-right-bold column: 3 row: 2 - entity: script.kodi_back icon: mdi:backup-restore column: 1 row: 3 - entity: script.kodi_down icon: mdi:arrow-down-bold column: 2 row: 3 - entity: script.kodi_playpause icon: mdi:play-pause column: 3 row: 3
groups.yaml
remote_controlview: view: yes icon: mdi:remote entities: - group.remote_control_general - group.remote_control_kodi - group.remote_control_tv - group.remote_control_amp remote_control_kodi: name: Rasplex entities: - script.remote_control_kodi
Any help would be appreciated.
thanks,