Fix missing adding Button in action editor
All checks were successful
E2E Testing / test (push) Successful in 1m31s

This commit is contained in:
Sebastian Böckelmann 2024-03-18 16:43:50 +01:00
parent e033243389
commit 413d5eb925
2 changed files with 5 additions and 8 deletions

View File

@ -42,7 +42,7 @@
[@detailExpand]="element == expandedElement ? 'expanded' : 'collapsed'">
<div class="condition-action-container">
<div class="action-container">
<app-scriptaccount-action-editor [transition]="element" [scriptAccounts]="scriptAccounts"></app-scriptaccount-action-editor>
<app-scriptaccount-action-editor [transition]="element" [scriptAccounts]="scriptAccounts" [enableEditing]="true"></app-scriptaccount-action-editor>
</div>
<div class="condition-container">
<app-scriptaccount-condition-editor [conditions]="element.scriptAccountConditions" [scriptAccounts]="scriptAccounts"

View File

@ -6,7 +6,6 @@
"initial": false,
"conditions": [
{
"scriptAccount": "Luftfeuchtigkeit",
"minValue": 0,
"maxValue": "50"
}
@ -18,7 +17,6 @@
"initial": false,
"conditions": [
{
"scriptAccount": "Luftfeuchtigkeit",
"minValue": "50",
"maxValue": "75"
}
@ -29,14 +27,13 @@
],
"transitions": [
{
"scriptAccountActions": [],
"scriptAccountConditions": [
"scriptAccountActions": [
{
"scriptAccount": "Luftfeuchtigkeit",
"minValue": "50",
"maxValue": "75"
"changingValue": 10,
"scriptAccount": "Temperature"
}
],
"scriptAccountConditions": [],
"startingState": "Sonnig",
"endingState": "Wolkig"
}