ACTUAL fix for yaml resources
This commit is contained in:
parent
1d0986bb94
commit
8da698ab82
@ -53,14 +53,16 @@ async def async_setup_view(hass):
|
|||||||
add_extra_js_url(hass, r["url"])
|
add_extra_js_url(hass, r["url"])
|
||||||
|
|
||||||
if not frontend_added:
|
if not frontend_added:
|
||||||
if resources.async_create_item:
|
if getattr(resources, "async_create_item", None):
|
||||||
await resources.async_create_item(
|
await resources.async_create_item(
|
||||||
{
|
{
|
||||||
"res_type": "module",
|
"res_type": "module",
|
||||||
"url": FRONTEND_SCRIPT_URL + "?automatically-added",
|
"url": FRONTEND_SCRIPT_URL + "?automatically-added",
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
elif resources.data and resources.data.append:
|
elif getattr(resources, "data", None) and getattr(
|
||||||
|
resources.data, "append", None
|
||||||
|
):
|
||||||
resources.data.append(
|
resources.data.append(
|
||||||
{
|
{
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user