You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My Home Assistant version:
core: 2024.7.4
supervisor: 2024.06.2
What I am doing:
I am trying to have multiple popups and when I am at first popup, click on the btn and opening second popup it will show successfully. Than I would click go back and it is configured to open popup first one. but ui will throw an error
as Unknown error.
What I expected to happen:
Should not complain and be able to open popup that was configured
What happened instead:
ui is not loading with error
Minimal steps to reproduce:
you have lovelace ui yaml and popup files as fileOne.yaml and fileTwo.yaml
now lovelace ui
create card with tap_action: !include fileOne.yaml
it will open popup
now in fileOne.yaml create card with tap_action: !include fileTwo.yaml
now in fileTwo.yaml create card with tap_action: !include fileOne.yaml
In this case you at the Lovelace ui, click on fileOne -> you now at fileTwo, click fileOne = should go back
But its not working since ui is throwing error with this set up
# The least amount of code or steps possible to reproduce my error# Put your code/steps here
[ X ] Understand that leaving one or more boxes unticked or failure to follow the template above may increase the time required to handle my bug-report, or cause it to be closed without further action.
The text was updated successfully, but these errors were encountered:
My Home Assistant version:
core: 2024.7.4
supervisor: 2024.06.2
What I am doing:
I am trying to have multiple popups and when I am at first popup, click on the btn and opening second popup it will show successfully. Than I would click go back and it is configured to open popup first one. but ui will throw an error
as Unknown error.
What I expected to happen:
Should not complain and be able to open popup that was configured
What happened instead:
ui is not loading with error
Minimal steps to reproduce:
you have lovelace ui yaml and popup files as fileOne.yaml and fileTwo.yaml
now lovelace ui
create card with tap_action: !include fileOne.yaml
it will open popup
now in fileOne.yaml create card with tap_action: !include fileTwo.yaml
now in fileTwo.yaml create card with tap_action: !include fileOne.yaml
In this case you at the Lovelace ui, click on fileOne -> you now at fileTwo, click fileOne = should go back
But its not working since ui is throwing error with this set up
Lovelace ui
card:
type: horizontal-stack
cards:
- type: custom:button-card
name: Residents
tap_action: !include residents.yaml
Residents.yaml
card:
type: horizontal-stack
cards:
- type: custom:button-card
name: Resident one
tap_action: !include residentOne.yaml
ResidentOne.yaml
card:
type: horizontal-stack
cards:
- type: custom:button-card
name: back
tap_action: !include residents.yaml
Error messages from the browser console:
UI throws Unknown error
{
"code": "unknown_error",
"message": "Unknown error"
}
By replacing the space in the checkboxes ([ ]) with an X below, I indicate that I:
[ X ] Understand that this is a channel for reporting bugs, not a support forum (https://community.home-assistant.io/).
[ X ] Have made sure I am using the latest version of the plugin.
[ X ] Have followed the troubleshooting steps of the "Common Problems" section of https://github.com/thomasloven/hass-config/wiki/Lovelace-Plugins.
[ X ] Understand that leaving one or more boxes unticked or failure to follow the template above may increase the time required to handle my bug-report, or cause it to be closed without further action.
The text was updated successfully, but these errors were encountered: