diff --git a/pyproject.toml b/pyproject.toml index 900493bc2c..7ff7a2fb4a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "home-assistant-frontend" -version = "20221031.0" +version = "20221102.0" license = {text = "Apache-2.0"} description = "The Home Assistant frontend" readme = "README.md" diff --git a/src/dialogs/more-info/ha-more-info-dialog.ts b/src/dialogs/more-info/ha-more-info-dialog.ts index ca01aac40c..e1e9df7dc0 100644 --- a/src/dialogs/more-info/ha-more-info-dialog.ts +++ b/src/dialogs/more-info/ha-more-info-dialog.ts @@ -315,7 +315,7 @@ export class MoreInfoDialog extends LitElement { cursor: default; } - :host([tab="info"][large]) { + :host([tab="info"][large]) ha-dialog { --mdc-dialog-min-width: 90vw; --mdc-dialog-max-width: 90vw; } diff --git a/src/panels/lovelace/hui-root.ts b/src/panels/lovelace/hui-root.ts index e574a842f1..8867c59097 100644 --- a/src/panels/lovelace/hui-root.ts +++ b/src/panels/lovelace/hui-root.ts @@ -747,10 +747,10 @@ class HUIRoot extends LitElement { if (curViewConfig?.back_path) { navigate(curViewConfig.back_path); - } else if (history.length > 0) { + } else if (history.length > 1) { history.back(); } else { - navigate(views[0].path!); + navigate(this.route!.prefix); } } diff --git a/src/panels/mailbox/ha-dialog-show-audio-message.js b/src/panels/mailbox/ha-dialog-show-audio-message.js index 83d3d5bdf0..8c199763f9 100644 --- a/src/panels/mailbox/ha-dialog-show-audio-message.js +++ b/src/panels/mailbox/ha-dialog-show-audio-message.js @@ -23,7 +23,7 @@ class HaDialogShowAudioMessage extends LocalizeMixin(PolymerElement) { color: var(--secondary-text-color); } .icon { - text-align: right; + text-align: var(--float-end); }