fix(editor): Set max resize height for decision input (#37061)

This commit is contained in:
Kai
2026-08-26 11:09:58 +00:00
committed by GitHub
parent ebbdc1ab72
commit 2d227dd22a
@@ -126,6 +126,7 @@ async function onComment() {
:rows="3"
:maxlength="WORKFLOW_REVIEW_TEXT_MAX_LENGTH"
:placeholder="i18n.baseText('workflowReviews.detail.activity.composer.placeholder')"
:class="$style.input"
data-test-id="workflow-review-decision-note"
/>
<div :class="$style.actions">
@@ -188,6 +189,12 @@ async function onComment() {
gap: var(--spacing--xs);
}
.input {
:global(textarea) {
max-height: 50dvh;
}
}
.actions {
display: flex;
justify-content: flex-end;