From 85ac30868262a35aad8e767ec893b79d9847326e Mon Sep 17 00:00:00 2001
From: jojohoch <joachim.hoch@iqb.hu-berlin.de>
Date: Mon, 3 Jul 2023 12:46:28 +0200
Subject: [PATCH] [editor] Remove placeholder from state variable inputs

---
 .../state-variables-dialog/state-variable-editor.component.html | 2 --
 .../button-action-param-state-variable.component.html           | 1 -
 2 files changed, 3 deletions(-)

diff --git a/projects/editor/src/app/components/dialogs/state-variables-dialog/state-variable-editor.component.html b/projects/editor/src/app/components/dialogs/state-variables-dialog/state-variable-editor.component.html
index 0a0c46e7d..4e63409d2 100644
--- a/projects/editor/src/app/components/dialogs/state-variables-dialog/state-variable-editor.component.html
+++ b/projects/editor/src/app/components/dialogs/state-variables-dialog/state-variable-editor.component.html
@@ -4,7 +4,6 @@
     <input matInput
            #idInput
            [class.error]="error"
-           [placeholder]="'stateVariableId' | translate"
            [ngModel]="stateVariable.id"
            (input)="checkId(idInput.value)">
   </mat-form-field>
@@ -12,7 +11,6 @@
   <mat-form-field>
     <mat-label>{{'stateVariableValue' | translate}}</mat-label>
     <input matInput
-           [placeholder]="'stateVariableValue' | translate"
            [(ngModel)]="stateVariable.value"
            (ngModelChange)="stateVariableChange.emit(stateVariable)">
   </mat-form-field>
diff --git a/projects/editor/src/app/components/properties-panel/model-properties-tab/input-groups/button-properties/button-action-param-state-variable.component.html b/projects/editor/src/app/components/properties-panel/model-properties-tab/input-groups/button-properties/button-action-param-state-variable.component.html
index 1c939d672..c92d6c2cb 100644
--- a/projects/editor/src/app/components/properties-panel/model-properties-tab/input-groups/button-properties/button-action-param-state-variable.component.html
+++ b/projects/editor/src/app/components/properties-panel/model-properties-tab/input-groups/button-properties/button-action-param-state-variable.component.html
@@ -13,7 +13,6 @@
   <mat-form-field>
     <mat-label>{{'stateVariableValue' | translate}}</mat-label>
     <input matInput
-           [placeholder]="'stateVariableValue' | translate"
            [(ngModel)]="stateVariable.value"
            (ngModelChange)="stateVariableChange.emit(stateVariable)">
   </mat-form-field>
-- 
GitLab