fix CommentInput: replace deprecated value binding with model-value

This commit is contained in:
2026-01-15 14:50:18 +01:00
parent 8d5b200107
commit 8b708f8c73
2 changed files with 8 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
kind: Fixed
body: 'fix CommentInput: replace deprecated value binding with model-value'
time: 2026-01-15T14:53:34.733888032+01:00
custom:
Issue: "492"
SchemaChange: No schema change

View File

@@ -8,8 +8,8 @@
:editor="ClassicEditor"
:config="classicEditorConfig"
:placeholder="trans(EVALUATION_COMMENT_PLACEHOLDER)"
:value="comment"
@input="$emit('update:comment', $event)"
:model-value="comment"
@update:model-value="$emit('update:comment', $event)"
tag-name="textarea"
></ckeditor>
</div>