Compare commits

..

1 Commits

Author SHA1 Message Date
Zack Arnett
ca1dacd621 Update to actually set loading 2020-09-18 14:51:02 -05:00
4 changed files with 14 additions and 15 deletions

View File

@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name="home-assistant-frontend",
version="20200918.1",
version="20200918.0",
description="The Home Assistant frontend",
url="https://github.com/home-assistant/home-assistant-polymer",
author="The Home Assistant Authors",

View File

@@ -256,7 +256,7 @@ class DialogUserDetail extends LitElement {
await adminChangePassword(this.hass, this._params!.entry.id, newPassword);
showAlertDialog(this, {
title: this.hass.localize(
"ui.panel.config.users.editor.password_changed"
"ui.panel.config.users.add_user.password_changed"
),
});
}

View File

@@ -1,29 +1,29 @@
import {
customElement,
html,
internalProperty,
LitElement,
property,
TemplateResult,
internalProperty,
} from "lit-element";
import {
array,
assert,
boolean,
object,
optional,
string,
union,
} from "superstruct";
import { fireEvent } from "../../../../common/dom/fire_event";
import "../../../../components/entity/ha-entities-picker";
import type { HomeAssistant } from "../../../../types";
import type { CalendarCardConfig } from "../../cards/types";
import "../../components/hui-entity-editor";
import "../../../../components/entity/ha-entities-picker";
import "../../components/hui-theme-select-editor";
import type { LovelaceCardEditor } from "../../types";
import type { EditorTarget, EntitiesEditorEvent } from "../types";
import { configElementStyle } from "./config-elements-style";
import {
string,
optional,
object,
boolean,
array,
union,
assert,
} from "superstruct";
const cardConfigStruct = object({
type: string(),
@@ -113,7 +113,6 @@ export class HuiCalendarCardEditor extends LitElement
this._config = { ...this._config, entities: ev.detail.value };
} else if (target.configValue) {
if (target.value === "") {
this._config = { ...this._config };
delete this._config[target.configValue!];
} else {
this._config = {

View File

@@ -1737,7 +1737,7 @@
"name": "Name",
"change_password": "Change password",
"new_password": "New Password",
"password_changed": "Password was changed successfully",
"password_changed": "The password is changed!",
"activate_user": "Activate user",
"deactivate_user": "Deactivate user",
"delete_user": "Delete user",