From 8e57ba18ac702785e32ee1ad0b91799569274e10 Mon Sep 17 00:00:00 2001 From: Christian Hartmann Date: Wed, 10 Jun 2026 17:38:46 +0200 Subject: [PATCH] refactor: remove duplicate computed prop from Ranking Signed-off-by: Christian Hartmann --- src/components/Questions/QuestionRanking.vue | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/components/Questions/QuestionRanking.vue b/src/components/Questions/QuestionRanking.vue index 8e0307f96..d5687f145 100644 --- a/src/components/Questions/QuestionRanking.vue +++ b/src/components/Questions/QuestionRanking.vue @@ -255,10 +255,6 @@ export default { }, computed: { - contentValid() { - return this.answerType.validate(this) - }, - shiftDragHandle() { return !this.readOnly && this.options.length !== 0 && !this.isLastEmpty },