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 0a0c46e7d44f4f3a64c11e4f466287006411e2f8..4e63409d26a55a434df1ad4618e61d2c46b6365e 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 1c939d67296cd5fecc1117b0fee34779302bf85e..c92d6c2cb1d7f6a84f95d73882649e44ba7e2b5d 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>