Fix tooltip with title on hass-subpage (#1048)

This commit is contained in:
Paulus Schoutsen 2018-03-29 16:39:53 -07:00 committed by c727
parent e46d2e2934
commit 0e227708b9
6 changed files with 7 additions and 7 deletions

View File

@ -43,7 +43,7 @@
font-weight: 500;
}
</style>
<hass-subpage title='Cloud Account'>
<hass-subpage header='Cloud Account'>
<div class='content'>
<ha-config-section
is-wide='[[isWide]]'

View File

@ -39,7 +39,7 @@
display: none;
}
</style>
<hass-subpage title="Forgot Password">
<hass-subpage header="Forgot Password">
<div class='content'>
<paper-card>
<div class='card-content'>

View File

@ -53,7 +53,7 @@
color: var(--secondary-text-color);
}
</style>
<hass-subpage title='Cloud Login'>
<hass-subpage header='Cloud Login'>
<div class='content'>
<ha-config-section
is-wide='[[isWide]]'

View File

@ -38,7 +38,7 @@
display: none;
}
</style>
<hass-subpage title="Register Account">
<hass-subpage header="Register Account">
<div class='content'>
<ha-config-section
is-wide='[[isWide]]'

View File

@ -28,7 +28,7 @@
}
</style>
<hass-subpage title='Integrations'>
<hass-subpage header='Integrations'>
<template is='dom-if' if='[[_progress.length]]'>
<ha-config-section is-wide='[[isWide]]'>
<span slot='header'>In Progress</span>

View File

@ -14,7 +14,7 @@
icon='mdi:arrow-left'
on-click='_backTapped'
></paper-icon-button>
<div main-title>[[title]]</div>
<div main-title>[[header]]</div>
</app-toolbar>
</app-header>
@ -29,7 +29,7 @@ class HassSubpage extends Polymer.Element {
static get properties() {
return {
title: String
header: String
};
}