mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
feat(editor): Removing ph-no-capture class from some elements (#6674)
* feat(editor): Remove `.ph-no-capture` class from some of the fields * ✔️ Updating test snapshots * ⚡ Redacting expressions preview in credentials form * 🔧 Disable posthog input masking * 🚨 Testing PostHog iFrame settings * Reverting iframe test * ⚡ Hiding API key in PostHog recordings * ✅ Added tests for redacted values * ✔️ Updating checkbox snapshots after label component update * ✔️ Updating test snapshots in editor-ui * 👕 Fix lint errors
This commit is contained in:
committed by
GitHub
parent
250175d066
commit
c3455a4ad8
@@ -121,7 +121,6 @@
|
||||
<span
|
||||
v-if="isSimple(data)"
|
||||
:class="{ [$style.value]: true, [$style.empty]: isEmpty(data) }"
|
||||
class="ph-no-capture"
|
||||
>{{ getValueToRender(data) }}</span
|
||||
>
|
||||
<n8n-tree :nodeClass="$style.nodeClass" v-else :value="data">
|
||||
@@ -143,11 +142,9 @@
|
||||
>
|
||||
</template>
|
||||
<template #value="{ value }">
|
||||
<span
|
||||
:class="{ [$style.nestedValue]: true, [$style.empty]: isEmpty(value) }"
|
||||
class="ph-no-capture"
|
||||
>{{ getValueToRender(value) }}</span
|
||||
>
|
||||
<span :class="{ [$style.nestedValue]: true, [$style.empty]: isEmpty(value) }">
|
||||
{{ getValueToRender(value) }}
|
||||
</span>
|
||||
</template>
|
||||
</n8n-tree>
|
||||
</td>
|
||||
|
||||
Reference in New Issue
Block a user