mirror of
https://github.com/n8n-io/n8n.git
synced 2026-08-28 17:22:01 +08:00
fix(editor): Set max resize height for decision input (#37061)
This commit is contained in:
+7
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user