mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
19 lines
440 B
Vue
19 lines
440 B
Vue
<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>
|