fix(editor): Remove undismissible callout (no-changelog) (#18473)

This commit is contained in:
Romeo Balta
2025-08-18 10:19:02 +01:00
committed by GitHub
parent 55776f5cf4
commit b3a9a0d097

View File

@@ -1806,33 +1806,6 @@ const onNameSubmit = async (name: string) => {
}"
/>
</SuggestedWorkflows>
<N8nCallout
v-else-if="!loading && showEasyAIWorkflowCallout && easyAICalloutVisible"
theme="secondary"
icon="bot"
:class="$style['easy-ai-workflow-callout']"
>
{{ i18n.baseText('workflows.list.easyAI') }}
<template #trailingContent>
<div :class="$style['callout-trailing-content']">
<N8nButton
data-test-id="easy-ai-button"
size="small"
type="secondary"
@click="openAIWorkflow('callout')"
>
{{ i18n.baseText('generic.tryNow') }}
</N8nButton>
<N8nIcon
size="small"
icon="x"
:title="i18n.baseText('generic.dismiss')"
class="clickable"
@click="dismissEasyAICallout"
/>
</div>
</template>
</N8nCallout>
<N8nCallout
v-if="showReadyToRunWorkflowsCallout"
theme="secondary"