Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion homeassistant/components/lovelace/cast.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ async def async_get_media_browser_root_object(
return []
return [
BrowseMedia(
title="Lovelace",
title="Dashboards",
media_class=MEDIA_CLASS_APP,
media_content_id="",
media_content_type=DOMAIN,
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/lovelace/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"domain": "lovelace",
"name": "Lovelace",
"name": "Dashboards",
"documentation": "https://www.home-assistant.io/integrations/lovelace",
"codeowners": ["@home-assistant/frontend"]
}
2 changes: 1 addition & 1 deletion tests/components/lovelace/test_cast.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ async def test_root_object(hass):
)
assert len(root) == 1
item = root[0]
assert item.title == "Lovelace"
assert item.title == "Dashboards"
assert item.media_class == lovelace_cast.MEDIA_CLASS_APP
assert item.media_content_id == ""
assert item.media_content_type == lovelace_cast.DOMAIN
Expand Down