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/config/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
async def async_setup(hass, config):
"""Set up the config component."""
await hass.components.frontend.async_register_built_in_panel(
'config', 'config', 'mdi:settings')
'config', 'config', 'hass:settings')

async def setup_panel(panel_name):
"""Set up a panel."""
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/hassio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def async_setup(hass, config):

if 'frontend' in hass.config.components:
yield from hass.components.frontend.async_register_built_in_panel(
'hassio', 'Hass.io', 'mdi:home-assistant')
'hassio', 'Hass.io', 'hass:home-assistant')

if 'http' in config:
yield from hassio.update_hass_api(config['http'])
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/history.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ async def async_setup(hass, config):

hass.http.register_view(HistoryPeriodView(filters, use_include_order))
await hass.components.frontend.async_register_built_in_panel(
'history', 'history', 'mdi:poll-box')
'history', 'history', 'hass:poll-box')

return True

Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/logbook.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def log_message(service):
hass.http.register_view(LogbookView(config.get(DOMAIN, {})))

await hass.components.frontend.async_register_built_in_panel(
'logbook', 'logbook', 'mdi:format-list-bulleted-type')
'logbook', 'logbook', 'hass:format-list-bulleted-type')

hass.services.async_register(
DOMAIN, 'log', log_message, schema=LOG_MESSAGE_SCHEMA)
Expand Down