fix(editor): Fix notification rendering HTML as text (#10642)

This commit is contained in:
Raúl Gómez Morales
2024-09-03 10:41:59 +02:00
committed by GitHub
parent ce39933766
commit 5eba534319
3 changed files with 24 additions and 13 deletions

View File

@@ -0,0 +1,18 @@
<script lang="ts" setup>
import { useI18n } from '@/composables/useI18n';
const i18 = useI18n();
</script>
<template>
<div>
<a data-action="reload">{{ i18.baseText('nodeView.refresh') }}</a>
{{ i18.baseText('nodeView.toSeeTheLatestStatus') }}.
<br />
<a
href="https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.wait/"
target="_blank"
>
{{ i18.baseText('nodeView.moreInfo') }}
</a>
</div>
</template>