mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
fix: Hide settings hint from log view (#17813)
This commit is contained in:
@@ -148,6 +148,7 @@ type Props = {
|
||||
compact?: boolean;
|
||||
tableHeaderBgColor?: 'base' | 'light';
|
||||
disableHoverHighlight?: boolean;
|
||||
disableSettingsHint?: boolean;
|
||||
disableAiContent?: boolean;
|
||||
collapsingTableColumnName: string | null;
|
||||
};
|
||||
@@ -169,6 +170,7 @@ const props = withDefaults(defineProps<Props>(), {
|
||||
disableEdit: false,
|
||||
disablePin: false,
|
||||
disableHoverHighlight: false,
|
||||
disableSettingsHint: false,
|
||||
compact: false,
|
||||
tableHeaderBgColor: 'base',
|
||||
workflowExecution: undefined,
|
||||
@@ -1541,7 +1543,10 @@ defineExpose({ enterEditMode });
|
||||
</slot>
|
||||
</N8nCallout>
|
||||
</div>
|
||||
<NodeSettingsHint v-if="props.paneType === 'output'" :node="node" />
|
||||
<NodeSettingsHint
|
||||
v-if="!props.disableSettingsHint && props.paneType === 'output'"
|
||||
:node="node"
|
||||
/>
|
||||
<N8nCallout
|
||||
v-for="hint in getNodeHints()"
|
||||
:key="hint.message"
|
||||
|
||||
@@ -87,6 +87,7 @@ function handleChangeDisplayMode(value: IRunDataDisplayMode) {
|
||||
:disable-pin="true"
|
||||
:disable-edit="true"
|
||||
:disable-hover-highlight="true"
|
||||
:disable-settings-hint="true"
|
||||
:display-mode="displayMode"
|
||||
:disable-ai-content="!isSubNodeLog(logEntry)"
|
||||
:is-executing="isExecuting"
|
||||
|
||||
Reference in New Issue
Block a user