diff --git a/app/Models/EvaluationGridRowTemplate.php b/app/Models/EvaluationGridRowTemplate.php index f90dde90..7ad1bbdb 100644 --- a/app/Models/EvaluationGridRowTemplate.php +++ b/app/Models/EvaluationGridRowTemplate.php @@ -13,7 +13,7 @@ */ class EvaluationGridRowTemplate extends Model { - const CONTROL_TYPES = ['slider', 'radiobuttons', 'checkbox']; + const CONTROL_TYPES = ['slider', 'radiobuttons', 'checkbox', 'heading']; /** * The table associated with the model. diff --git a/lang/de/t.php b/lang/de/t.php index 4e379875..749d9f40 100644 --- a/lang/de/t.php +++ b/lang/de/t.php @@ -118,6 +118,7 @@ "checkbox" => "Checkbox", "radiobuttons" => "➖ / ➕ / ✨", "slider" => "Skala von 1 - 10", + "heading" => "Zwischentitel", ), "criterion" => "Kriterium", ), diff --git a/resources/js/components/evaluationGrid/InputEvaluationGrid.vue b/resources/js/components/evaluationGrid/InputEvaluationGrid.vue index e3082393..09f84a65 100644 --- a/resources/js/components/evaluationGrid/InputEvaluationGrid.vue +++ b/resources/js/components/evaluationGrid/InputEvaluationGrid.vue @@ -1,7 +1,9 @@