fix(editor): Fix schema view bugs (#14734)

Co-authored-by: Michael Kret <michael.k@radency.com>
This commit is contained in:
Elias Meire
2025-04-24 08:53:02 +02:00
committed by GitHub
parent 1b1d6043d6
commit 022f4755c2
14 changed files with 1040 additions and 781 deletions

View File

@@ -22,6 +22,7 @@ type Props = {
preview?: boolean;
locked?: boolean;
lockedTooltip?: string;
runIndex?: number;
};
const props = defineProps<Props>();
@@ -48,6 +49,7 @@ const emit = defineEmits<{
:data-node-type="nodeType"
:data-target="!locked && 'mappable'"
:data-node-name="nodeName"
:data-run-index="runIndex"
class="pill"
:class="{
'pill--highlight': highlight,