mirror of
https://github.com/home-assistant/frontend.git
synced 2025-08-01 13:37:47 +00:00
Change default automation mode (#6398)
This commit is contained in:
parent
f98cdd0749
commit
21e277b8a2
@ -47,7 +47,7 @@ import { HaDeviceTrigger } from "./trigger/types/ha-automation-trigger-device";
|
||||
import { mdiContentSave } from "@mdi/js";
|
||||
import { PaperListboxElement } from "@polymer/paper-listbox";
|
||||
|
||||
const MODES = ["parallel", "single", "restart", "queued"];
|
||||
const MODES = ["single", "restart", "queued", "parallel"];
|
||||
const MODES_MAX = ["queued", "parallel"];
|
||||
|
||||
export class HaAutomationEditor extends LitElement {
|
||||
|
@ -45,9 +45,13 @@ class CloudForgotPassword extends LocalizeMixin(EventsMixin(PolymerElement)) {
|
||||
display: none;
|
||||
}
|
||||
</style>
|
||||
<hass-subpage header=[[localize('ui.panel.config.cloud.forgot_password.title')]]>
|
||||
<hass-subpage
|
||||
header="[[localize('ui.panel.config.cloud.forgot_password.title')]]"
|
||||
>
|
||||
<div class="content">
|
||||
<ha-card header=[[localize('ui.panel.config.cloud.forgot_password.subtitle')]]>
|
||||
<ha-card
|
||||
header="[[localize('ui.panel.config.cloud.forgot_password.subtitle')]]"
|
||||
>
|
||||
<div class="card-content">
|
||||
<p>
|
||||
[[localize('ui.panel.config.cloud.forgot_password.instructions')]]
|
||||
|
@ -847,10 +847,10 @@
|
||||
"label": "Mode",
|
||||
"description": "The mode controls what happens when the automation is triggered while the actions are still running from a previous trigger. Check the {documentation_link} for more info.",
|
||||
"documentation": "automation documentation",
|
||||
"single": "Single",
|
||||
"single": "Single (default)",
|
||||
"restart": "Restart",
|
||||
"queued": "Queued",
|
||||
"parallel": "Parallel (default)"
|
||||
"parallel": "Parallel"
|
||||
},
|
||||
"max": {
|
||||
"queued": "Queue length",
|
||||
|
Loading…
x
Reference in New Issue
Block a user