fix(editor): Do not show new NDV for sticky notes (#17537)

Co-authored-by: jakeranallo <jake.ranallo@gmail.com>
This commit is contained in:
Elias Meire
2025-07-25 13:58:27 +02:00
committed by GitHub
parent 408ccd2a58
commit 4de3759a59
7 changed files with 62 additions and 19 deletions

View File

@@ -306,7 +306,7 @@ function handleChangeCollapsingColumn(columnName: string | null) {
<template>
<RunData
ref="runDataRef"
:class="$style.runData"
:class="[$style.runData, { [$style.runDataV2]: isNDVV2 }]"
:node="node"
:workflow="workflow"
:run-index="runIndex"
@@ -490,6 +490,10 @@ function handleChangeCollapsingColumn(columnName: string | null) {
.runData {
background-color: var(--color-run-data-background);
}
.runDataV2 {
background-color: var(--color-ndvv2-run-data-background);
}
.outputTypeSelect {
margin-bottom: var(--spacing-4xs);
width: fit-content;