20221102.0 (#14259)

This commit is contained in:
Bram Kragten 2022-11-02 11:06:39 +01:00 committed by GitHub
commit ab4dd47e51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 10 deletions

View File

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "home-assistant-frontend" name = "home-assistant-frontend"
version = "20221031.0" version = "20221102.0"
license = {text = "Apache-2.0"} license = {text = "Apache-2.0"}
description = "The Home Assistant frontend" description = "The Home Assistant frontend"
readme = "README.md" readme = "README.md"

View File

@ -315,7 +315,7 @@ export class MoreInfoDialog extends LitElement {
cursor: default; cursor: default;
} }
:host([tab="info"][large]) { :host([tab="info"][large]) ha-dialog {
--mdc-dialog-min-width: 90vw; --mdc-dialog-min-width: 90vw;
--mdc-dialog-max-width: 90vw; --mdc-dialog-max-width: 90vw;
} }

View File

@ -747,10 +747,10 @@ class HUIRoot extends LitElement {
if (curViewConfig?.back_path) { if (curViewConfig?.back_path) {
navigate(curViewConfig.back_path); navigate(curViewConfig.back_path);
} else if (history.length > 0) { } else if (history.length > 1) {
history.back(); history.back();
} else { } else {
navigate(views[0].path!); navigate(this.route!.prefix);
} }
} }

View File

@ -23,7 +23,7 @@ class HaDialogShowAudioMessage extends LocalizeMixin(PolymerElement) {
color: var(--secondary-text-color); color: var(--secondary-text-color);
} }
.icon { .icon {
text-align: right; text-align: var(--float-end);
} }
</style> </style>
<ha-dialog <ha-dialog

View File

@ -1510,17 +1510,17 @@
"add_water_source": "Add water source", "add_water_source": "Add water source",
"dialog": { "dialog": {
"header": "Configure water consumption", "header": "Configure water consumption",
"paragraph": "Water consumption is the volume of water that flows to your home.", "paragraph": "Gas consumption is the volume of water that flows to your home.",
"energy_stat": "Consumed water (m³/ft³)", "energy_stat": "Consumed water (m³ or gl)",
"cost_para": "Select how Home Assistant should keep track of the costs of the consumed water.", "cost_para": "Select how Home Assistant should keep track of the costs of the consumed water.",
"no_cost": "Do not track costs", "no_cost": "Do not track costs",
"cost_stat": "Use an entity tracking the total costs", "cost_stat": "Use an entity tracking the total costs",
"cost_stat_input": "Total Costs Entity", "cost_stat_input": "Total Costs Entity",
"cost_entity": "Use an entity with current price", "cost_entity": "Use an entity with current price",
"cost_entity_input": "Entity with the current price per m³", "cost_entity_input": "Entity with the current price per m³ or gl",
"cost_number": "Use a static price", "cost_number": "Use a static price",
"cost_number_input": "Price per m³", "cost_number_input": "Price per m³ or gl",
"water_usage": "Water usage (m³/ft³)" "water_usage": "Water usage (m³ or gl)"
} }
}, },
"device_consumption": { "device_consumption": {