Use hass iconset (#14185)

This commit is contained in:
Paulus Schoutsen 2018-06-05 10:49:54 -04:00 committed by GitHub
parent e370d523ec
commit ad9621ebe5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -21,7 +21,7 @@ ON_DEMAND = ('zwave',)
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."""

View File

@ -178,7 +178,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'])

View File

@ -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

View File

@ -100,7 +100,7 @@ async def setup(hass, config):
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)