fix(editor): Hide data mapping tooltip in credential edit modal (#11356)

This commit is contained in:
Elias Meire
2024-10-24 14:22:15 +02:00
committed by GitHub
parent 656439e871
commit ff14dcb3a1
2 changed files with 13 additions and 8 deletions

View File

@@ -539,7 +539,8 @@ const showDragnDropTip = computed(
!isDropDisabled.value &&
(!ndvStore.hasInputData || !isInputDataEmpty.value) &&
!ndvStore.isMappingOnboarded &&
ndvStore.isInputParentOfActiveNode,
ndvStore.isInputParentOfActiveNode &&
!props.isForCredential,
);
const shouldCaptureForPosthog = computed(() => {